generated from BrainLesion/brainles-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (52 loc) · 1.27 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
51
52
53
54
55
56
57
58
59
60
61
[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 = "brats"
version = "0.0.0"
description = "BraTS algorithms"
authors = [
"Marcel Rosier <[email protected]>",
"Florian Kofler <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/BrainLesion/BraTS"
homepage = "https://github.com/BrainLesion/BraTS"
documentation = "https://brats.readthedocs.io/en/latest/"
keywords = [
"brain tumor",
"glioma",
"BraTS",
"brain lesion",
"segmentation",
"synthesis",
"inpainting",
]
# Add the exclude field directly under [tool.poetry]
exclude = [
"tests", # Test files
"docs", # Documentation files
".github", # GitHub workflows, actions, etc.
]
[tool.poetry.dependencies]
python = ">=3.8"
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"
[tool.poetry.dev-dependencies]
pytest = ">=8.0.0"
pytest-cov = ">=5.0.0"
[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"