00001 from setuptools import setup 00002 00003 setup(name='rosinstall', 00004 version= '0.5.21', 00005 packages=['rosinstall'], 00006 package_dir = {'':'src'}, 00007 install_requires=['vcstools'], 00008 scripts = ["scripts/rosinstall", "scripts/roslocate", "scripts/rosws", "scripts/rosco"], 00009 author = "Tully Foote", 00010 author_email = "tfoote@willowgarage.com", 00011 url = "http://www.ros.org/wiki/rosinstall", 00012 download_url = "http://pr.willowgarage.com/downloads/rosinstall/", 00013 keywords = ["ROS"], 00014 classifiers = [ 00015 "Programming Language :: Python", 00016 "License :: OSI Approved :: BSD License" ], 00017 description = "The installer for ROS", 00018 long_description = """\ 00019 The installer for ROS 00020 """, 00021 license = "BSD" 00022 )