-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (19 loc) · 910 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
try:
from catkin_pkg.python_setup import generate_distutils_setup
setup_args = generate_distutils_setup(
packages=['phastapromep','labelapp'],
package_dir={'phastapromep': 'src/phastapromep','labelapp': 'src/labelapp'},
)
setup(**setup_args)
except ImportError:
setup(name='Helpers to use Phase-State Machines and Probabilistic Movement Primitives together',
version='0.1.0',
description='Library to teach probabilistic motion primitives, which are distributions over continous trajectories',
author='Raphael Deimel, Jan Martin',
author_email='[email protected]',
url='http://www.mti-engage.tu-berlin.de/',
packages=['phastapromep','labelapp'],
package_dir={'phastapromep': 'src/phastapromep','labelapp': 'src/labelapp'},
)