-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.25 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
import setuptools
import os
import subprocess
if __name__ == '__main__':
try:
setuptools.setup(
name='garmentds',
version='0.0',
packages=setuptools.find_packages('src'),
package_dir={'':'src'},
python_requires='>=3.9',
install_requires=[
"numpy<2.0",
"torch",
"trimesh",
"taichi==1.6.0",
"tqdm",
"opencv-python",
"omegaconf",
"matplotlib",
"scipy",
"open3d",
"cgal",
"shapely",
"hydra-core",
"pyrealsense2",
"sapien",
"lightning",
"pybind11",
"einops",
"diffusers",
"psutil",
"torchvision",
"tensorboard",
"diffusers",
"accelerate",
"openai",
"transformers",
"sentencepiece",
"wandb",
"timm",
"scikit-image"
]
)
except:
raise RuntimeError("An error occured during setup.")