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_pkg',
00009
00010 version= '0.1.0',
00011 packages=['winros_create_pkg'],
00012 package_dir = {'':'src'},
00013 scripts = ["scripts/winros_create_pkg"],
00014 package_data = {'winros_create_pkg': [
00015 'templates/cpp/CMakeLists.txt',
00016 'templates/cpp/mainpage.dox',
00017 'templates/cpp/package.xml',
00018 'templates/cpp/include/PACKAGE_NAME/package_name.hpp',
00019 'templates/cpp/src/CMakeLists.txt',
00020 'templates/cpp/src/main.cpp',
00021 'templates/cpp/src/lib/CMakeLists.txt',
00022 'templates/cpp/src/lib/package_name.cpp',
00023 'templates/py/CMakeLists.txt',
00024 'templates/py/mainpage.dox',
00025 'templates/py/package.xml',
00026 'templates/py/scripts/PACKAGE_NAME',
00027 'templates/py/src/PACKAGE_NAME/__init__.py',
00028 'templates/common/CMakeLists.txt',
00029 'templates/common/mainpage.dox',
00030 'templates/common/package.xml',
00031 ]},
00032 author = "Yeong-il Choe",
00033 author_email = "yichoe@yujinrobot.com",
00034 url = "http://www.rog.org/",
00035 download_url = "https://github.com/ros-windows/win_ros.git",
00036 keywords = ["ROS"],
00037 classifiers = [
00038 "Programming Language :: Python",
00039 "License :: OSI Approved :: BSD License" ],
00040 description = "Creates catkin package templates",
00041 long_description = open('Readme.md').read(),
00042 license = "BSD"
00043 )