File size: 257 Bytes
98844c3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup, find_packages

setup(
    name="promptda",
    version="1.0",
    packages=find_packages(where="src"),
    author="Haotong Lin",
    description=["Prompt Depth Anything"],
    url="https://github.com/DepthAnything/PromptDA",
)