-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (32 loc) · 1000 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup
import os
import os.path as osp
try:
dependencies_managed_by_conda = os.environ['DEPENDENCIES_MANAGED_BY_CONDA'] == '1'
except KeyError:
dependencies_managed_by_conda = False
setup(
name='posepile',
version='0.1.0',
author='István Sárándi',
author_email='sarandi@vision.rwth-aachen.de',
packages=['posepile'],
scripts=[],
license='LICENSE',
description='',
python_requires='>=3.6',
install_requires=[] if dependencies_managed_by_conda else [
'tensorflow',
'addict',
'transforms3d',
'numpy',
'more-itertools',
'msgpack-numpy',
'pycocotools',
'multiprocessing-utils',
'cameralib @ git+https://github.com/isarandi/cameralib.git',
'boxlib @ git+https://github.com/isarandi/boxlib.git',
'rlemasklib @ git+https://github.com/isarandi/rlemasklib.git',
'simplepyutils @ git+https://github.com/isarandi/simplepyutils.git',
]
)