-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.33 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pycerr"
dynamic = ["version"]
authors = [
{ name="Aditya P. Apte", email="[email protected]" },
{ name="Aditi Iyer", email="[email protected]" },
{ name="Eve LoCastro", email="[email protected]" },
{ name="CERR User community", email="[email protected]"},
{ name="Joseph O. Deasy", email="[email protected]" }
]
description = "A Computational Environment for Radiological Research"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'pydicom',
'python-dateutil',
'scipy',
'h5py',
'pandas',
'SimpleITK',
'nibabel',
'scikit-learn',
'scikit-image',
'PyWavelets',
'shapelysmooth',
'matplotlib <= 3.9.0',
'ipywidgets',
'surface-distance-based-measures @ git+https://github.com/google-deepmind/surface-distance'
]
[project.urls]
"Homepage" = "https://github.com/cerr/pyCERR"
"Bug Tracker" = "https://github.com/cerr/pyCERR/issues"
[project.optional-dependencies]
napari = [
"napari[all]",
"napari-animation"
]
[tool.setuptools_scm]
version_file = "cerr/_version.py"