mirror of https://github.com/ArduPilot/ardupilot
13 lines
240 B
Python
13 lines
240 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=['gencpp'],
|
||
|
package_dir={'': 'src'},
|
||
|
requires=['genmsg']
|
||
|
)
|
||
|
|
||
|
setup(**d)
|