forked from compphoto/IntrinsicCompositing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (19 loc) · 786 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@main'
]
)