-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (38 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
48 lines (38 loc) · 1.07 KB
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
[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 = "stroke_segmentor"
version = "0.0.0.dev"
description = ""
authors = ["Marcel Rosier <marcel.rosier@tum.de>"]
repository = "https://github.com/BrainLesion/stroke_segmentor"
homepage = "https://github.com/BrainLesion/stroke_segmentor"
documentation = "https://www.TODO.com"
readme = "README.md"
# Add the exclude field directly under [tool.poetry]
exclude = ["examples", "benchmark"]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^13.9.4"
monai = "^1.5.0"
simpleitk = ">=2.2.1"
nibabel = "^5.3.2"
loguru = "^0.7.3"
requests = "^2.32.5"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0.0"
pytest-cov = ">=5.0.0"
flake8 = ">=5.0.1"
pytest-mock = "^3.14.1"
[tool.pytest.ini_options]
pythonpath = ["."]
[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"