forked from QIB-Sheffield/dbdicom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (79 loc) · 2.38 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
# https://python-poetry.org/docs/pyproject
# minimal required information
[project]
name = "dbdicom"
version = "0.2.2"
dependencies = [
"matplotlib",
"nibabel",
"numpy",
"pandas",
"pydicom",
"python-gdcm",
"pylibjpeg-libjpeg",
"importlib-resources", #necessary?
]
# optional information
description = "A pythonic interface for reading and writing DICOM databases"
readme = "README.md"
authors = [
{ name = "Steven Sourbron", email = "[email protected]" },
{ name = "Ebony Gunwhy", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ['python', "medical imaging", "DICOM"]
requires-python = ">=3.6"
[project.urls]
"Homepage" = "https://qib-sheffield.github.io/dbdicom/"
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
docs = [
"sphinx",
"pydata-sphinx-theme",
"myst-parser",
"sphinx-copybutton",
"sphinx-design",
"sphinx-remove-toctrees",
"autodocsumm",
"docutils",
"sphinxcontrib-applehelp",
"sphinxcontrib-devhelp",
"sphinxcontrib-htmlhelp",
"sphinxcontrib-jsmath",
"sphinxcontrib-qthelp",
"sphinxcontrib-serializinghtml",
]
wrappers = [
"scipy",
# restricting to the latest stable release for now due to a bug
# introduced in 0.20.0 that causes executables to crash. The bug is known
# and a fix will presumably be included in upcoming releases
# in which case this restriction can be removed.
# https://github.com/scikit-image/scikit-image/issues/6784
# https://github.com/scientific-python/lazy_loader/pull/39
# Note on pyton 3.11 scikit image must be installed as
# pip install --pre scikit-image<=0.19.0
# until a new version is released (0.21.0)
"scikit-image<=0.19.0",
#"SimpleITK", "itk-elastix",
"SimpleITK-SimpleElastix",
"dipy",
"scikit-learn",
]