CoolFace
Modelpublic

ByteEd/3DModelGeneration_PointCloud

sourceHugging Facemitupdated 2y agoView on Hugging Face
6likes
setup.py28 linesDownload Raw Back to root
1from setuptools import setup2 3setup(4    name="point-e",5    packages=[6        "point_e",7        "point_e.diffusion",8        "point_e.evals",9        "point_e.models",10        "point_e.util",11    ],12    install_requires=[13        "filelock",14        "Pillow",15        "torch",16        "fire",17        "humanize",18        "requests",19        "tqdm",20        "matplotlib",21        "scikit-image",22        "scipy",23        "numpy",24        "clip @ git+https://github.com/openai/CLIP.git",25    ],26    author="OpenAI",27)28