File size: 1,046 Bytes
2d0cbd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"],
    },
)