-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (51 loc) · 1.53 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
62
63
[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 = "brainles_aurora"
version = "0.0.0" # will be overwritten by poetry-dynamic-versioning but needs to be set
description = "Segmentation models for cancer metastasis in brain MR."
license = "Apache-2.0"
authors = [
"Florian Kofler <florian.kofler@tum.de>",
"Isra Mekki <isra.mekki@helmholtz-muenchen.de>",
"Marcel Rosier <marcel.rosier@tum.de>",
]
maintainers = [
"Florian Kofler <florian.kofler@tum.de>",
"Isra Mekki <isra.mekki@helmholtz-muenchen.de>",
"Marcel Rosier <marcel.rosier@tum.de>",
]
readme = "README.md"
repository = "https://github.com/BrainLesion/AURORA"
#documentation = ""
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
# Add the package.exclude field here
exclude = ["brainles_aurora/model_weights"]
[tool.poetry.dependencies]
# core
python = ">=3.8"
monai = ">=1.2.0"
torch = ">=2.1.0"
nibabel = ">=4.0.2"
numpy = ">=1.23.0"
# utils
tqdm = "^4.64.1"
path = "^16.2.0"
requests = ">=2.0.0"
rich = ">=13.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
[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"