-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (23 loc) · 944 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
'''
This file is part of PyTrajectory.
'''
from distutils.core import setup
setup(name='PyTrajectory',
version='1.2.0',
packages=['pytrajectory'],
requires=['numpy (>=1.8.1)',
'sympy (>=0.7.5)',
'scipy (>=0.13.0)',
'matplotlib (<1.5.0)'],
# metadata
author='Andreas Kunze, Carsten Knoll, Oliver Schnabel',
author_email='[email protected]',
url='https://github.com/TUD-RST/pytrajectory',
description='Python library for trajectory planning.',
long_description='''
PyTrajectory is a Python library for the determination of the feed forward
control to achieve a transition between desired states of a nonlinear control system.
''',
#setup_requires=['numpy>=1.8.1', 'sympy>=0.7.5', 'scipy>=0.13.0', 'matplotlib<1.5.0'],
#install_requires=['numpy>=1.8.1', 'sympy>=0.7.5', 'scipy>=0.13.0', 'matplotlib<1.5.0']
)