generated from BrainLesion/brainles-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (37 loc) · 945 Bytes
/
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
[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]>",
]
#repository = ""
#homepage = ""
#documentation = ""
readme = "README.md"
# Add the exclude field directly under [tool.poetry]
exclude = ["examples", "benchmark"]
[tool.poetry.dependencies]
python = ">=3.8"
docker = ">=7.0.0"
rich = ">=13.0.0"
PyYAML = ">=6.0.1"
dacite = ">=1.8.0"
halo = ">=0.0.31"
tqdm = ">=4.66.4"
loguru = ">=0.6.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = ">=7.0.0"
sphinx-copybutton = ">=0.5.2"
sphinx-rtd-theme = ">=1.3.0"
myst-parser = ">=2.0.0"