from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="depthpro-wrapper", version="0.1.0", author="bdck", description="Clean high-level wrapper for Apple's DepthPro metric depth estimation + point-cloud generation", long_description=long_description, long_description_content_type="text/markdown", url="https://huggingface.co/bdck/depthpro-wrapper", packages=find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Image Processing", ], python_requires=">=3.9", install_requires=[ "torch>=2.0.0", "torchvision", "transformers>=4.40.0", "pillow", "numpy", ], extras_require={ "dev": ["pytest", "black", "ruff"], }, )