2012-01-04 07:43:54 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
import sys
|
|
|
|
sys.path.insert(0, 'src')
|
|
|
|
|
|
|
|
setup(name='roslib',
|
|
|
|
version= '1.7.1',
|
2012-01-05 03:58:26 +08:00
|
|
|
packages=['ros', 'roslib', 'rosunit', 'rosmake', 'rosclean', 'roscreate', 'rosboost_cfg'],
|
2012-01-04 07:43:54 +08:00
|
|
|
package_dir = {'ros':'core/roslib/src/ros',
|
|
|
|
'roslib':'core/roslib/src/roslib',
|
|
|
|
'rosunit':'tools/rosunit/src/rosunit',
|
|
|
|
'rosmake':'tools/rosmake/src/rosmake',
|
|
|
|
'rosclean':'tools/rosclean/src/rosclean',
|
2012-01-04 10:52:15 +08:00
|
|
|
'roscreate':'tools/roscreate/src/roscreate',
|
2012-01-05 03:58:26 +08:00
|
|
|
'rosboost_cfg':'tools/rosboost_cfg/src/rosboost_cfg',
|
2012-01-04 07:43:54 +08:00
|
|
|
},
|
2012-01-05 09:09:11 +08:00
|
|
|
package_data = {
|
|
|
|
'roscreate': ['*.tmpl'],
|
|
|
|
},
|
2012-01-04 10:49:26 +08:00
|
|
|
install_requires=['rospkg'],
|
2012-01-04 07:43:54 +08:00
|
|
|
scripts = ['tools/rosclean/scripts/rosclean',
|
|
|
|
'tools/rosmake/scripts/rosmake',
|
2012-01-04 10:52:15 +08:00
|
|
|
'tools/rosunit/scripts/rosunit',
|
2012-01-05 03:58:26 +08:00
|
|
|
'tools/rosboost_cfg/scripts/rosboost-cfg',
|
2012-01-05 09:09:11 +08:00
|
|
|
'tools/roscreate/scripts/roscreate-pkg',
|
|
|
|
'tools/roscreate/scripts/roscreate-stack',
|
2012-01-04 07:43:54 +08:00
|
|
|
],
|
2012-01-05 03:58:26 +08:00
|
|
|
author = "Maintained by Ken Conley",
|
2012-01-04 07:43:54 +08:00
|
|
|
author_email = "kwc@willowgarage.com",
|
|
|
|
url = "http://www.ros.org/wiki/roslib",
|
2012-01-04 10:49:26 +08:00
|
|
|
download_url = "http://pr.willowgarage.com/downloads/roslib/",
|
2012-01-04 07:43:54 +08:00
|
|
|
keywords = ["ROS"],
|
|
|
|
classifiers = [
|
2012-01-04 10:49:26 +08:00
|
|
|
"Programming Language :: Python",
|
2012-01-04 07:43:54 +08:00
|
|
|
"License :: OSI Approved :: BSD License" ],
|
2012-01-04 10:49:26 +08:00
|
|
|
description = "roslib",
|
2012-01-04 07:43:54 +08:00
|
|
|
long_description = """\
|
|
|
|
Internal Python libraries for low-level 'ros' stack. This also installs the rosmake and rosclean tools.
|
|
|
|
This does *not* include the ROS communication libraries.
|
|
|
|
""",
|
|
|
|
license = "BSD"
|
|
|
|
)
|