-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 922 Bytes
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
[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 = "auxiliary"
version = "0.0.0"
description = "TODO."
authors = ["Florian Kofler <florian.kofler@tum.de>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/BrainLesion/auxiliary"
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=1.24"
tifffile = ">=2023.8.25"
path = ">=17.0.0"
pillow = ">=10.0.0"
simpleitk = ">=2.2.1"
loguru = "^0.7.3"
dcm2niix = { version = ">=1.0.20250506", optional = true }
[tool.poetry.dev-dependencies]
pytest = ">=6.2"
[tool.poetry.extras]
dcm2niix = ["dcm2niix"]
[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"