forked from TUMFTM/velocity_optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.11 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="velocity_optimization",
version="1.0.6",
author="Thomas Herrmann",
author_email="[email protected]",
description="Optimizes (Maximizes) the velocity profile for a vehicle respecting physical constraints and "
"runtime-variable input parameters.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TUMFTM/velocity_optimization",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["numpy>=1.18.1", # packages to run code on car
"osqp>=0.6.1",
"scipy>=1.3.3",
"matplotlib>=3.0.3",
"sympy>=1.6",
"ad-interface-functions>=0.21"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)