CoolFace
Apppublic

depth-anything/PromptDA

sourceHugging Faceupdated 1y agoView on Hugging Face
26likes
setup.py11 linesDownload Raw Back to root
1from setuptools import setup, find_packages2 3setup(4    name="promptda",5    version="1.0",6    packages=find_packages(where="src"),7    author="Haotong Lin",8    description=["Prompt Depth Anything"],9    url="https://github.com/DepthAnything/PromptDA",10)11