You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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",
|
|
|
|
"clip @ git+https://github.com/openai/CLIP.git",
|
|
|
|
],
|
|
|
|
author="OpenAI",
|
|
|
|
)
|