mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
17 lines
329 B
Python
Executable File
17 lines
329 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
args = dict(
|
|
name='pyuavcan',
|
|
version='0.1',
|
|
description='UAVCAN for Python',
|
|
packages=['pyuavcan', 'pyuavcan.dsdl'],
|
|
author='Pavel Kirienko',
|
|
author_email='pavel.kirienko@gmail.com',
|
|
url='http://uavcan.org',
|
|
license='MIT'
|
|
)
|
|
|
|
setup(**args)
|