setup.py 492 B

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