Files
PX4-Autopilot/libuavcan/dsdl_compiler/setup.py
T
2014-03-29 14:54:26 +04:00

20 lines
503 B
Python
Executable File

#!/usr/bin/env python3
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)