-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (57 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
60 lines (57 loc) · 1.22 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
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepdrr"
version = "1.2.2"
description = "A Catalyst for Machine Learning in Fluoroscopy-guided Procedures."
readme = "README.md"
authors = [
{ name = "Benjamin D. Killeen", email = "killeen@jhu.edu" },
{ name = "Mathias Unberath", email = "unberath@jhu.edu" },
{ name = "Cong Gao" },
{ name = "Liam J. Wang" },
{ name = "Max Judish" }
]
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = [
"numpy<2.0.0",
"torch",
"torchvision",
"nibabel",
"scikit-image",
"pydicom",
"scipy",
"pyvista",
"pynrrd",
"rich",
"tqdm",
"opencv-python",
"seaborn",
"graphviz",
"pyglet>=1.4.11",
"PyOpenGL==3.1.6",
"PyOpenGL_accelerate>=3.1.7",
"arcade-pyrender",
"trimesh",
"cuda-python",
"killeengeo",
"strenum",
"open3d",
]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"trame",
"ipykernel",
"ipywidgets"
]
cuda102 = ["cupy-cuda102"]
cuda110 = ["cupy-cuda110"]
cuda111 = ["cupy-cuda111"]
cuda11x = ["cupy-cuda11x"]
cuda12x = ["cupy-cuda12x"]
[tool.setuptools.packages.find]
where = ["."]