-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.6 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rescale4dl"
version = "0.2.1"
description = "A systematic approach for determining optimal image resolution in deep learning-based microscopy segmentation, balancing accuracy with acquisition/storage costs."
authors = [
{ name = "Mariana G Ferreira", email = " marianagferreira08@gmail.com" },
{ name = "Bruno Saraiva", email = "bruno.msaraiva2@gmail.com" },
{ name = "Ricardo Henriques", email = "ricardo.jv.henriques@gmail.com" },
{ name = "Estibaliz Gómez-de-Mariscal", email = "esgodema@gmail.com" }
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = "<= 3.12"
dependencies = [
"imageio>=2.33.1",
"jupyter>=1.1.1",
"matplotlib>=3.9.2",
"pandas>=2.2.3",
"pillow>=11.0.0",
"pypdf>=4.2.0",
"scikit-image>=0.22.0",
"scikit-learn>=1.5.2",
"scipy>=1.14.1",
"seaborn>=0.13.2",
"setuptools>=68.2.2",
"tifffile>=2024.12.12",
"nanopyx>=1.0.0",
]
[project.optional-dependencies]
all = ["rescale4dl[dev, test]"]
dev = [
"pre-commit>=3.7.0",
"ipykernel>=6.29.4",
"ruff>=0.4.3",
"gptrepo>=1.0.3",
"pdoc>=12.3.1",
"build",
"gptrepo"
]
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.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]