-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
19 lines (19 loc) · 822 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import setuptools
setuptools.setup(
name="intrinsic_compositing",
version="0.0.1",
author="Chris Careaga",
author_email="[email protected]",
description='a package containing to the code for the paper "Intrinsic Harmonization for Illumination-Aware Compositing"',
url="",
packages=setuptools.find_packages(),
license="",
python_requires=">3.6",
install_requires=[
'altered_midas @ git+https://github.com/CCareaga/MiDaS@master',
'chrislib @ git+https://github.com/CCareaga/chrislib@main',
'omnidata_tools @ git+https://github.com/CCareaga/omnidata@main',
'boosted_depth @ git+https://github.com/CCareaga/BoostingMonocularDepth@main',
'intrinsic @ git+https://github.com/compphoto/intrinsic@d9741e99b2997e679c4055e7e1f773498b791288'
]
)