setup.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 from distutils.core import setup
4 
5 args = dict(
6  name='libuavcan_dsdl_compiler',
7  version='0.1',
8  description='UAVCAN DSDL compiler for libuavcan',
9  packages=['libuavcan_dsdl_compiler'],
10  package_data={'libuavcan_dsdl_compiler': ['data_type_template.tmpl']},
11  scripts=['libuavcan_dsdlc'],
12  requires=['uavcan'],
13  author='Pavel Kirienko',
14  author_email='pavel.kirienko@gmail.com',
15  url='http://uavcan.org',
16  license='MIT'
17 )
18 
19 setup(**args)
setup


uavcan_communicator
Author(s):
autogenerated on Fri Dec 13 2024 03:10:03