forked from DAIRLab/dair_pll
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (50 loc) · 1014 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
install_reqs = [
# library
'torch',
'moviepy',
'Pillow',
'wandb',
'mujoco-py',
'optuna',
'numpy',
'scipy',
'typing_extensions',
'matplotlib',
'threadpoolctl',
'click',
'pywavefront',
'python-fcl',
'gitpython',
'protobuf==3.20.*',
'cvxpylayers',
# documentation
'networkx',
'protobuf==3.20.*',
'pydeps==1.10.12',
'Sphinx',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme',
'sphinx-toolbox',
'sphinxcontrib-bibtex',
# development
'yapf',
'pylint',
'mypy',
]
try:
import pydrake
print('USING FOUND DRAKE VERSION')
except ModuleNotFoundError as e:
install_reqs += ['drake']
dependency_links = [
'git+https://github.com/DAIRLab/drake-pytorch.git',
'git+https://github.com/mshalm/sappy.git'
]
setup(
name='dair_pll',
version='0.0.1',
packages=['dair_pll'],
install_requires=install_reqs,
dependency_links=dependency_links
)