forked from cluttrdev/pytrajectory
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (27 loc) · 1 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
"""
This file is part of PyTrajectory.
"""
from distutils.core import setup
from pytrajectory.release import __version__
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read()
setup(name='PyTrajectory',
version=__version__,
packages=['pytrajectory'],
install_requires=requirements,
# 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.
""",
classifiers=[
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
]
)