-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 879 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 879 Bytes
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
"""
Install Tigrillo main libraries
"""
from setuptools import setup
from setuptools import find_packages
setup(name='tigrillo',
version='1.0',
description='A library to simulate and pilot the Tigrillo quadruped robot',
author='Gabriel Urbain',
author_email='gabriel.urbain@ugent.be',
url='https://github.com/gabs48/tigrillo',
license='MIT',
install_requires=[
'scipy>=0.19.1',
'numpy',
'matplotlib',
'GitPython',
'pause>=0.1.2',
'lxml>=3.4.0',
'mpi4py>=1.3.1',
'psutil>=3.3.0',
'pybullet>=1.0.7',
"PyYaml",
"configparser",
],
extras_require={
'pyserial': ['scipy>=3.0.1'],
'rospy': ['rospy>=1.12.7','rospkg', 'catkin_pkg'],
},
packages=find_packages())