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 from qt_create import __version__
00007
00008 setup(name='roscreate-qt-pkg',
00009 version= __version__,
00010 packages=['qt_create'],
00011 package_dir = {'':'src'},
00012 scripts = ["scripts/roscreate-qt-pkg","scripts/roscreate-qt-legacy-pkg"],
00013 package_data = {'qt_create': [
00014 'templates/qt-ros/CMakeLists.txt',
00015 'templates/qt-ros/src/*.cpp',
00016 'templates/qt-ros/ui/*.ui',
00017 'templates/qt-ros/include/PACKAGE_NAME/*.hpp',
00018 'templates/qt-ros/resources/*.qrc',
00019 'templates/qt-ros/resources/images/*.png',
00020 'templates/qt-ros/mainpage.dox',
00021 'templates/qt-ros/manifest.xml',
00022 'templates/qt-ros/Makefile',
00023 'templates/qt-ros-legacy/CMakeLists.txt',
00024 'templates/qt-ros-legacy/src/*.cpp',
00025 'templates/qt-ros-legacy/ui/*.ui',
00026 'templates/qt-ros-legacy/include/PACKAGE_NAME/*.hpp',
00027 'templates/qt-ros-legacy/resources/*.qrc',
00028 'templates/qt-ros-legacy/resources/images/*.png',
00029 'templates/qt-ros-legacy/mainpage.dox',
00030 'templates/qt-ros-legacy/manifest.xml',
00031 'templates/qt-ros-legacy/Makefile',
00032 ]},
00033 author = "Daniel Stonier",
00034 author_email = "d.stonier@gmail.com",
00035 url = "http://pypi.python.org/pypi/roscreate-qt-pkg/",
00036 download_url = "https://github.com/stonier/qt_ros.git",
00037 keywords = ["ROS"],
00038 classifiers = [
00039 "Programming Language :: Python",
00040 "License :: OSI Approved :: BSD License" ],
00041 description = "Creates qt package templates for RoS",
00042 long_description = open('README.txt').read(),
00043 license = "BSD"
00044 )
00045