-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
62 lines (43 loc) · 1.78 KB
/
package.xml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0"?>
<package format="2">
<!--
<depend> : build, export, and execution dependencies
<build_depend> : pkgs needed at compile time (any file or library)
<build_export_depend>: pkgs needed to build libraries against this pkg
<exec_depend> : pkgs needed to run this code. (e.g: shared libs)
<test_depend> : only additional deps for unit testing (e.g: gtest)
<doc_depend> : dependencies for documentation generation
See also:
- http://wiki.ros.org/catkin/package.xml
- http://www.ros.org/reps/rep-0140.html
-->
<!-- PACKAGE INFORMATION -->
<!-- - - - - - - - - - - -->
<name>robot_skills</name>
<version>2.0.0</version>
<description>The robot_skills package</description>
<!-- team -->
<maintainer email="[email protected]">
Bender Team - UChile Homebreakers</maintainer>
<author email="[email protected]">
Bender Team - UChile Homebreakers</author>
<!-- specific developers -->
<!-- about and related repository -->
<url type="website">http://robotica-uchile.amtc.cl/</url>
<url type="bugtracker">https://github.com/uchile-robotics/robot_skills/issues</url>
<url type="repository">https://github.com/uchile-robotics/robot_skills</url>
<license>TODO</license>
<!-- SYSTEM DEPENDENCIES -->
<!-- - - - - - - - - - - -->
<!-- build system tool to build this package -->
<buildtool_depend>catkin</buildtool_depend>
<!-- common ROS depends -->
<depend>rospy</depend>
<depend>std_msgs</depend>
<depend>std_srvs</depend>
<!-- === depends for skills === -->
<depend>python-mock</depend>
<depend>python-termcolor</depend>
<export>
</export>
</package>