mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 23:48:31 -04:00
12 lines
226 B
Python
12 lines
226 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=['genmsg'],
|
|
package_dir={'': 'src'}
|
|
)
|
|
|
|
setup(**d)
|