-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
88 lines (70 loc) · 1.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[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 = [
"example", # Example data and scripts
"tests", # Test files
"docs", # Documentation files
".github", # GitHub workflows, actions, etc.
]
name = "brainles_preprocessing"
version = "0.0.0" # will be overwritten by poetry-dynamic-versioning but needs to be set
description = "Tool for preprocessing tasks in biomedical imaging, with a focus on (but not limited to) multi-modal brain MRI"
license = "Apache-2.0"
authors = [
"Florian Kofler <[email protected]>",
"Isra Mekki <[email protected]>",
"Marcel Rosier <[email protected]>",
]
maintainers = [
"Florian Kofler <[email protected]>",
"Isra Mekki <[email protected]>",
"Marcel Rosier <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/BrainLesion/preprocessing"
#documentation = ""
keywords = [
"brain tumor",
"glioma",
"BraTS",
"skullstripping",
"brain extraction",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.10"
# core
path = "^16.10.0"
ttictoc = "^0.5.6"
pathlib = "^1.0.1"
nibabel = ">=3.2.1"
numpy = "^1.23.0"
# registration
antspyx = "^0.4.2"
# hd-bet reqs
brainles_hd_bet = ">=0.0.8"
# utils
tqdm = "^4.64.1"
auxiliary = ">=0.0.42"
rich = "^13.6.0"
# optional registration backends
ereg = { version = "^0.0.10", optional = true }
[tool.poetry.extras]
all = ["ereg"]
ereg = ["ereg"]
[tool.poetry.dev-dependencies]
pytest = ">=8.1.1"
[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"