File size: 591 Bytes
ac25220 | 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="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",
)
|