generated from BrainLesion/brainles-template
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (62 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
74 lines (62 loc) · 1.57 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
[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]
exclude = [
"tests", # Test files
"docs", # Documentation files
"figures", # Figures and images
".github", # GitHub workflows, actions, etc.
]
version = "0.0.0.dev"
[project]
dynamic = ["version"]
name = "brats"
description = "BraTS algorithms"
authors = [
{ name = "Marcel Rosier", email = "marcel.rosier@tum.de" },
{ name = "Florian Kofler", email = "florian.kofler@tum.de" },
]
readme = "README.md"
license = "Apache-2.0"
keywords = [
"brain tumor",
"glioma",
"BraTS",
"brain lesion",
"segmentation",
"synthesis",
"inpainting",
]
dependencies = [
"spython>=0.3.14",
"docker>=7.0.0",
"rich>=13.0.0",
"PyYAML>=6.0.1",
"dacite>=1.8.0",
"loguru>=0.7.0",
"nibabel>=5.0.0",
"numpy>=1.21.0; python_version<='3.9'",
"numpy>=1.26.0; python_version>='3.10'",
]
[project.optional-dependencies]
preprocessing = ["brainles_preprocessing>=0.6.7; python_version >= '3.10'"]
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0.0"
pytest-cov = ">=5.0.0"
flake8 = ">=5.0.0"
[tool.pytest.ini_options]
pythonpath = ["."]
[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"