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',
|
|
|
|
packages=['ros', 'roslib', 'rosmake', 'rosunit', 'rosclean'],
|
|
|
|
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: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:49:26 +08:00
|
|
|
author = "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"
|
|
|
|
)
|