| from setuptools import setup, find_packages | |
| setup( | |
| name="point2mesh", | |
| version="1.0.0", | |
| description="Point2Mesh: A Self-Prior for Deformable Meshes — shrink-wrap a mesh onto a point cloud", | |
| author="Reimplementation of Hanocka et al. SIGGRAPH 2020", | |
| packages=find_packages(), | |
| python_requires=">=3.9", | |
| install_requires=[ | |
| "torch>=2.0", | |
| "numpy>=1.24", | |
| "scipy>=1.10", | |
| ], | |
| entry_points={ | |
| "console_scripts": [ | |
| "point2mesh=point2mesh.__main__:main", | |
| ], | |
| }, | |
| ) | |