File size: 519 Bytes
a5407e7 |
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 |
from setuptools import setup
setup(
name="point-e",
packages=[
"point_e",
"point_e.diffusion",
"point_e.evals",
"point_e.models",
"point_e.util",
],
install_requires=[
"filelock",
"Pillow",
"torch",
"fire",
"humanize",
"requests",
"tqdm",
"matplotlib",
"scikit-image",
"scipy",
"numpy",
"clip @ git+https://github.com/openai/CLIP.git",
],
author="OpenAI",
)
|