-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.xml
31 lines (26 loc) · 1.29 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
<?xml version="1.0"?>
<package format="3">
<name>knowledge_representation</name>
<version>0.9.6</version>
<description>APIs for storing and querying information about the world.
Provides C++ and Python API's to make getting facts in and out easy (while still exposing a full SQL interface).
Supports PostgreSQL and MySQL backends.</description>
<maintainer email="[email protected]">Nick Walker</maintainer>
<maintainer email="[email protected]">Yuqian Jiang</maintainer>
<license>BSD</license>
<buildtool_depend>catkin</buildtool_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 2">python-setuptools</buildtool_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 3">python3-setuptools</buildtool_depend>
<build_depend>roslint</build_depend>
<depend>boost</depend>
<depend>libpqxx</depend>
<depend>libpqxx-dev</depend>
<depend>postgresql</depend>
<depend condition="$ROS_PYTHON_VERSION == 2">python</depend>
<depend condition="$ROS_PYTHON_VERSION == 3">python3</depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 2">python-imaging</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 3">python3-pil</exec_depend>
<test_depend>rosunit</test_depend>
<export>
</export>
</package>