mirror of
https://gitlab.com/yikestone/qt_pi.git
synced 2025-08-03 21:54:12 +05:30
12 lines
223 B
Python
12 lines
223 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
d = generate_distutils_setup(
|
|
packages=['qt_pi'],
|
|
package_dir={'': 'scripts'},
|
|
)
|
|
|
|
setup(**d)
|