mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
20 lines
502 B
Python
Executable File
20 lines
502 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
args = dict(
|
|
name='libuavcan_dsdl_compiler',
|
|
version='0.1',
|
|
description='UAVCAN DSDL compiler for libuavcan',
|
|
packages=['libuavcan_dsdl_compiler'],
|
|
package_data={'libuavcan_dsdl_compiler': ['data_type_template.tmpl']},
|
|
scripts=['libuavcan_dsdlc'],
|
|
requires=['mako', 'pyuavcan'],
|
|
author='Pavel Kirienko',
|
|
author_email='pavel.kirienko@gmail.com',
|
|
url='http://uavcan.org',
|
|
license='MIT'
|
|
)
|
|
|
|
setup(**args)
|