Merge pull request #28 from ros/issue_28

Missing Setup.py for Resource_retriever
This commit is contained in:
isucan 2013-07-25 00:02:33 -07:00
commit f4ec1566f6
2 changed files with 12 additions and 1 deletions

View File

@ -3,6 +3,8 @@ project(resource_retriever)
find_package(catkin REQUIRED COMPONENTS rosconsole roslib)
catkin_python_setup()
catkin_package(
LIBRARIES ${PROJECT_NAME}
INCLUDE_DIRS include)

View File

@ -0,0 +1,9 @@
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup()
d['packages'] = ['resource_retriever']
d['scripts'] = []
d['package_dir'] = {'': 'src'}
setup(**d)