-
Notifications
You must be signed in to change notification settings - Fork 98
/
setup.py
46 lines (45 loc) · 2.09 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
43
44
45
46
from setuptools import setup, find_packages
setup(
name='omg-tools',
version='0.1.4',
author='Ruben Van Parys',
author_email='ruben.vanparys@kuleuven.be',
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, != 3.5.2',
'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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)