Go to the documentation of this file.00001 from distutils.core import setup
00002
00003 import sys
00004 sys.path.insert(0, 'src')
00005
00006
00007
00008 setup(name='winros_create_msg_pkg',
00009
00010 version= '0.1.0',
00011 packages=['winros_create_msg_pkg'],
00012 package_dir = {'':'src'},
00013 scripts = ["scripts/winros_create_msg_pkg"],
00014 package_data = {'winros_create_msg_pkg': [
00015 'templates/comms/CMakeLists.txt',
00016 'templates/comms/mainpage.dox',
00017 'templates/comms/package.xml',
00018 'templates/comms/msg/Dude.msg',
00019 'templates/comms/srv/HelloDude.srv',
00020 ]},
00021 author = "Yeong-il Choe",
00022 author_email = "yichoe@yujinrobot.com",
00023 url = "http://www.rog.org/",
00024 download_url = "https://github.com/ros-windows/win_ros.git",
00025 keywords = ["ROS"],
00026 classifiers = [
00027 "Programming Language :: Python",
00028 "License :: OSI Approved :: BSD License" ],
00029 description = "Creates catkin message package templates",
00030 long_description = open('Readme.md').read(),
00031 license = "BSD"
00032 )