setup.py
Go to the documentation of this file.
1 #!/usr/bin/env pyyhon
2 
3 from distutils.core import setup
4 from catkin_pkg.python_setup import generate_distutils_setup
5 
6 d = generate_distutils_setup(
7  packages=['qt_create'],
8  package_dir = {'':'src'},
9  scripts = ["scripts/catkin_create_qt_pkg"],
10  package_data = {'qt_create': [
11  'templates/CATKIN_IGNORE',
12  'templates/qt-ros/CMakeLists.txt',
13  'templates/qt-ros/src/*.cpp',
14  'templates/qt-ros/ui/*.ui',
15  'templates/qt-ros/include/PACKAGE_NAME/*.hpp',
16  'templates/qt-ros/resources/*.qrc',
17  'templates/qt-ros/resources/images/*.png',
18  'templates/qt-ros/mainpage.dox',
19  'templates/qt-ros/package.xml',
20  'templates/qt-ros/Makefile',
21  ]},
22  requires=[]
23  )
24 
25 setup(**d)
26 
Definition: setup.py:1


qt_create
Author(s): Daniel Stonier
autogenerated on Wed Mar 11 2020 03:12:19