bdck commited on
Commit
ac25220
·
verified ·
1 Parent(s): dba24bf

Upload 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="learn_region_grow",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "torch>=2.0.0",
9
+ "numpy>=1.24.0",
10
+ "scipy>=1.10.0",
11
+ "scikit-learn>=1.3.0",
12
+ "h5py>=3.8.0",
13
+ ],
14
+ python_requires=">=3.9",
15
+ author="bdck",
16
+ description="PyTorch implementation of LRGNet: Learnable Region Growing for Point Clouds",
17
+ long_description=open("README.md").read(),
18
+ long_description_content_type="text/markdown",
19
+ url="https://huggingface.co/bdck/learn_region_grow",
20
+ )