-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.27 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ROCardS"
version = "0.0.1"
description = "See Readme.md on github for more details."
readme = "README.md"
requires-python = ">=3.8,<3.11"
license = { text = "CC BY-NC 4.0" }
authors = [
{ name = "Cosmin Ciausu", email = "cciausu@bwh.harvard.edu" }
]
dependencies = [
"setuptools>=45",
"importlib_resources>=5.1",
"dicom2nifti==2.5.0",
"joblib==1.4.2",
"numpy==1.24.3",
"pydicom==2.4.4",
"pynrrd==1.1.1",
"pyplastimatch==0.4.6",
"rt_utils==1.2.7",
"SimpleITK==2.4.0",
"tensorflow==2.10.0",
"tensorflow-estimator==2.10.0",
"tqdm",
"pandas; python_version == '3.8'",
"pandas; python_version == '3.9'",
"pandas==2.3.1; python_version == '3.10'",
"scipy==1.10.1; python_version in '3.8, 3.9'",
"scipy==1.14.1; python_version == '3.10'",
"scikit-image==0.21.0; python_version in '3.8, 3.9'",
"scikit-image==0.24.0; python_version == '3.10'",
"tensorflow-io-gcs-filesystem==0.31.0; python_version in '3.8, 3.9, 3.10'",
"python-gdcm==3.0.24.1; python_version in '3.8, 3.9'"
]
[project.urls]
Homepage = "https://github.com/AIM-Harvard/ROCardS"
[project.scripts]
ROCardS = "ROCardS.cli.ROCardS:main"