forked from AustralianCancerDataNetwork/pydicer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.2 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
[tool.poetry]
name = "pydicer"
version = "0.2.0"
description = "PYthon Dicom Image ConvertER"
authors = ["Ingham Medical Physics"]
license = "Apache License 2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Visualization",
"Development Status :: 4 - Beta",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pydicom = ">=2.1.2"
SimpleITK = ">=2.0.2"
pyorthanc = ">=1.11.2"
platipy = ">=0.5.0"
argparse = ">=1.4.0"
seaborn = "^0.12.0"
tqdm = "^4.55.1"
scikit-learn = "^1.2.2"
pyradiomics = ">=3.0.1"
[tool.poetry.group.dev.dependencies]
pylint = "^2.13.5"
black = "^22.3.0"
pytest = "6.2.5"
mypy = "^1.14.0"
pytest-mock = "^3.14.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^5.1.1"
sphinxcontrib-napoleon = "^0.7"
sphinx-theme = "^1.0"
sphinx-click = "^4.3.0"
furo = "^2022.6.21"
nbsphinx = "^0.8.9"
m2r2 = "^0.3.3"
notebook = "^6.5.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"