forked from TUMFTM/trajectory_planning_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.17 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
33
34
35
import setuptools
"""
Package on pypi.org can be updated with the following commands:
python3 setup.py sdist bdist_wheel
sudo python3 -m twine upload dist/*
"""
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='trajectory-planning-helpers',
version='0.79',
url='https://github.com/TUMFTM/trajectory_planning_helpers',
author="Alexander Heilmeier, Tim Stahl, Fabian Christ",
author_email="[email protected], [email protected]",
description="Useful functions used for path and trajectory planning at TUM/FTM",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.18.1',
'scipy>=1.3.3',
'quadprog>=0.1.7',
'matplotlib>=3.3.1'
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
])