-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.2 KB
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry]
name = "panoptica"
version = "0.0.0"
description = "Panoptic Quality (PQ) computation for binary masks."
authors = ["Florian Kofler <[email protected]>"]
repository = "https://github.com/BrainLesion/panoptica"
homepage = "https://github.com/BrainLesion/panoptica"
documentation = "https://panoptica.readthedocs.io/"
readme = "README.md"
# Add the exclude field directly under [tool.poetry]
exclude = ["examples", "benchmark"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.20.0"
connected-components-3d = "^3.12.3"
scipy = "^1.7.0"
rich = "^13.6.0"
scikit-image = "^0.22.0"
"ruamel.yaml" = "^0.18.6"
[tool.poetry.dev-dependencies]
pytest = ">=8.1.1"
coverage = ">=7.0.1"
pytest-mock = "^3.6.0"
pandas = "^2.1.0"
plotly = "^5.16.1"
joblib = "^1.3.2"
future = "^0.18.3"
flake8 = ">=4.0.1"
auxiliary = ">=0.1.0"
tqdm = ">=4.62.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = ">=7.0.0"
sphinx-copybutton = ">=0.5.2"
furo = ">=2024.8.6"
myst-parser = ">=2.0.0"