-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vlab4mic"
version = "0.0.21"
description = "VLab4Mic: A virtual laboratory for microscopy simulation and validation"
authors = [
{ name = "Damián Martinez", email = "jdmartinezigc@gmail.com" },
{ name = "Bruno Saraiva", email = "bruno.msaraiva2@gmail.com" },
{ name = "Mario del Rosario", email = "mario.delrosario@itqb.unl.pt" },
{ name = "Ricardo Henriques", email = "ricardo@henriqueslab.org" }
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy>=2.0.0",
"matplotlib>=3.9.0",
"scipy>=1.13.1",
"biopython>=1.83",
"plotly>=5.22.0",
"trimesh>=4.4.0",
"pyyaml>=6.0.1",
"tifffile>=2024.5.22",
"tqdm>=4.66.4",
"scikit-image>=0.23.2",
"requests>=2.32.3",
"scikit-learn>=1.5.0",
"pandas>=2.2.3",
"seaborn>=0.13.2",
"opencv-python>=4.11"
]
[project.optional-dependencies]
all = ["vlab4mic[dev,test]"]
dev = [
"pre-commit>=3.7.0",
"ruff>=0.4.3",
"gptrepo>=1.0.3",
"pdoc>=12.3.1",
"build"
]
test = [
"pytest>=8.2.0",
"pytest-xdist>=3.6.1",
"pytest-cov>=5.0.0",
"nbmake>=1.5.3",
"mypy>=1.10.0"
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.coverage.run]
source = ["src/vlab4mic"]
omit = [
"*__init__.py",
"*__*.py"
]
[project.scripts]
download-structures = "vlab4mic.download:download_suggested_structures"