forked from isarandi/posepile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.24 KB
/
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
35
36
37
38
39
from setuptools import setup, find_packages
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='[email protected]',
packages=['posepile','posepile.util'],
scripts=[],
license='LICENSE',
description='',
python_requires='>=3.6',
install_requires=[] if dependencies_managed_by_conda else [
'tensorflow',
'attrdict',
'transforms3d',
'numpy',
'scipy',
'more-itertools',
'msgpack-numpy',
'numba',
'jpeg4py',
'imageio[ffmpeg]',
'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',
'humcentr-cli @ git+https://github.com/isarandi/humcentr-cli.git',
'barecat @ git+https://github.com/isarandi/BareCat.git',
'posepile.util @ git+https://github.com/kelpabc123/PosePile.git'
]
)