setup.py 644 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. args = dict(
  4. name='uavcan',
  5. version='0.1',
  6. description='UAVCAN for Python',
  7. packages=['uavcan', 'uavcan.dsdl', 'uavcan.services', 'uavcan.monitors'],
  8. author='Pavel Kirienko',
  9. author_email='pavel.kirienko@gmail.com',
  10. url='http://uavcan.org',
  11. license='MIT',
  12. classifiers=[
  13. 'Development Status :: 3 - Alpha',
  14. 'Intended Audience :: Developers',
  15. 'Topic :: Software Development :: Build Tools',
  16. 'License :: OSI Approved :: MIT License',
  17. 'Programming Language :: Python :: 2.7',
  18. ],
  19. keywords=''
  20. )
  21. setup(**args)