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/setup.py',
00027 'templates/py/scripts/PACKAGE_NAME',
00028 'templates/py/src/PACKAGE_NAME/__init__.py',
00029 'templates/common/CMakeLists.txt',
00030 'templates/common/mainpage.dox',
00031 'templates/common/package.xml',
00032 ]},
00033 author = "Yeong-il Choe",
00034 author_email = "yichoe@yujinrobot.com",
00035 url = "http://www.rog.org/",
00036 download_url = "https://github.com/ros-windows/win_ros.git",
00037 keywords = ["ROS"],
00038 classifiers = [
00039 "Programming Language :: Python",
00040 "License :: OSI Approved :: BSD License" ],
00041 description = "Creates catkin package templates",
00042 long_description = open('Readme.md').read(),
00043 license = "BSD"
00044 )