forked from BRML/baxter_pick_and_place
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (24 loc) · 802 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
24
25
26
27
28
#!/usr/bin/env python
# DO NOT MANUALLY INVOKE THIS setup.py, USE CATKIN INSTEAD
# http://answers.ros.org/question/192723/cant-find-python-scripts-after-sourcing/?answer=192738#post-id-192738
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup()
d['packages'] = [
'calibration',
'core',
'demo',
'hardware',
'instruction',
'motion_planning',
'servoing',
'settings',
'simulation',
'vision']
d['package_dir'] = {'': 'src'}
d['requires'] = ['rospy', 'roswtf', 'tf',
'geometry_msgs', 'std_msgs', 'std_srvs', 'gazebo_msgs',
'baxter_interface', 'baxter_core_msgs',
'os', 'time', 'logging', 'numpy',
'cv2', 'caffe']
setup(**d)