-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 731 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 731 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
setup(
name="pelphix",
version="0.0.0",
description="Pelphix: Surgical Phase Recognition from X-ray Images in Percutaneous Pelvic Fixation",
author="Benjamin D. Killeen",
author_email="killeen@jhu.edu",
url="https://github.com/benjamindkilleen/pelphix",
install_requires=[
"torch",
"torchvision",
"lightning",
"hydra-core",
"omegaconf",
"rich",
"numpy",
"deepdrr",
"trimesh",
"gpustat",
"strenum",
"shapely",
"stringcase",
"perphix",
],
packages=find_packages(),
package_dir={"": "src"},
)