Руслан Урядинский / libuavcan

Dependents:   UAVCAN UAVCAN_Subscriber

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers setup.py Source File

setup.py

00001 #!/usr/bin/env python
00002 
00003 from distutils.core import setup
00004 
00005 args = dict(
00006     name='libuavcan_dsdl_compiler',
00007     version='0.1',
00008     description='UAVCAN DSDL compiler for libuavcan',
00009     packages=['libuavcan_dsdl_compiler'],
00010     package_data={'libuavcan_dsdl_compiler': ['data_type_template.tmpl']},
00011     scripts=['libuavcan_dsdlc'],
00012     requires=['uavcan'],
00013     author='Pavel Kirienko',
00014     author_email='pavel.kirienko@gmail.com',
00015     url='http://uavcan.org',
00016     license='MIT'
00017 )
00018 
00019 setup(**args)