File size: 543 Bytes
bd630bd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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",
        ],
    },
)