-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (51 loc) · 1.1 KB
/
setup.py
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
from setuptools import setup
setup(
name="shap-e",
packages=[
"shap_e",
"shap_e.diffusion",
"shap_e.models",
"shap_e.models.generation",
"shap_e.models.nerf",
"shap_e.models.nerstf",
"shap_e.models.nn",
"shap_e.models.stf",
"shap_e.models.transmitter",
"shap_e.rendering",
"shap_e.rendering.blender",
"shap_e.rendering.raycast",
"shap_e.util",
],
install_requires=[
"filelock",
"Pillow",
"torch",
"fire",
"humanize",
"requests",
"tqdm",
"matplotlib",
"scikit-image",
"scipy",
"numpy",
"blobfile",
"opencv-python",
"torchsummary",
"pyyaml",
"ipywidgets",
"objaverse",
"wandb",
"datetime",
"peft",
"transformers",
"accelerate",
"bitsandbytes",
"trimesh",
"pandas",
"clip @ git+https://github.com/openai/CLIP.git",
"plyfile",
"bpy",
"blendertoolbox",
],
author="OpenAI",
)