forked from meco-group/omg-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.89 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
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='omg-tools',
version='0.1.3',
author='Ruben Van Parys',
author_email='[email protected]',
description=('Optimal Motion Generation tools: a user-friendly tool for ' +
'modeling, simulating and embedding of (spline-based) motion ' +
'planning problems'),
long_description=('Optimal Motion Generation-tools is a Python software ' +
'toolbox facilitating the modeling, simulation and ' +
'embedding of motion planning problems. ' +
'Its main goal is to collect research topics ' +
'concerning (spline-based) motion planning into a ' +
'user-friendly package in order to enlarge its ' +
'visibility towards the scientific and industrial world.'),
license='LGPLv3',
keywords='optimization motion planning splines distributed multi-agent mpc',
url='https://github.com/meco-group/omg-tools',
packages=find_packages(),
package_data={'omgtools.export': ['*/Makefile', '*/instructions.txt',
'*.cpp', '*.hpp',
'*/*.cpp', '*/*.hpp',
'*/*/*.cpp', '*/*/*.hpp',
'*/*/*/*.cpp', '*/*/*/*.hpp']},
install_requires=[
'matplotlib2tikz',
'casadi == 3.1.1.post3',
'six >= 1.10.0'
],
test_suite='nose.collector',
tests_require=['nose>=1.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)