This commit is contained in:
wxchen
2022-12-29 23:08:25 +08:00
commit 21ad625896
42 changed files with 2336 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
from setuptools import setup, find_packages
setup(
name="digit-depth",
version="0.1",
description="Digit Depth Reconstruction",
url="https://github.com/vocdex/digit-depth",
author="Shukrullo Nazirjonov",
author_email="nazirjonovsh2000@gmail.com",
license="MIT",
install_requires=['numpy', 'opencv-python', 'torch'],
packages=find_packages(),
zip_safe=False,
extras_require={
'testing': ['pytest'],
},
)