forked from BerkeleyAutomation/yumipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 805 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
"""
Setup of YuMiPy codebase
Author: Jacky Liang
"""
from setuptools import setup
requirements = [
'autolab_core',
'numpy',
'matplotlib',
'multiprocess',
'setproctitle',
'ipython==5.5.0',
'rospkg',
'catkin_pkg',
'empy',
'pyassimp'
]
setup(name='yumipy',
version='0.1.0',
description='YuMi Python Interface by Berkeley AutoLab',
author='Jacky Liang, Aimee Goncalves, Jeff Mahler',
author_email='[email protected]',
package_dir = {'': '.'},
packages=['yumipy'],
install_requires = requirements,
extras_require = { 'docs' : [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme'
],
}
)