| from setuptools import setup, find_packages |
|
|
| setup( |
| name="learn_region_grow", |
| version="0.1.0", |
| packages=find_packages(), |
| install_requires=[ |
| "torch>=2.0.0", |
| "numpy>=1.24.0", |
| "scipy>=1.10.0", |
| "scikit-learn>=1.3.0", |
| "h5py>=3.8.0", |
| ], |
| python_requires=">=3.9", |
| author="bdck", |
| description="PyTorch implementation of LRGNet: Learnable Region Growing for Point Clouds", |
| long_description=open("README.md").read(), |
| long_description_content_type="text/markdown", |
| url="https://huggingface.co/bdck/learn_region_grow", |
| ) |
|
|