bdck commited on
Commit
bd630bd
·
verified ·
1 Parent(s): d7bea5f

add setup.py

Browse files
Files changed (1) hide show
  1. setup.py +20 -0
setup.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="point2mesh",
5
+ version="1.0.0",
6
+ description="Point2Mesh: A Self-Prior for Deformable Meshes — shrink-wrap a mesh onto a point cloud",
7
+ author="Reimplementation of Hanocka et al. SIGGRAPH 2020",
8
+ packages=find_packages(),
9
+ python_requires=">=3.9",
10
+ install_requires=[
11
+ "torch>=2.0",
12
+ "numpy>=1.24",
13
+ "scipy>=1.10",
14
+ ],
15
+ entry_points={
16
+ "console_scripts": [
17
+ "point2mesh=point2mesh.__main__:main",
18
+ ],
19
+ },
20
+ )