mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
10 lines
258 B
Python
10 lines
258 B
Python
|
from distutils.core import setup
|
||
|
import glob
|
||
|
|
||
|
setup(name='OpenPilot UavTalk',
|
||
|
version='1.0',
|
||
|
description='OpenPilot UavTalk',
|
||
|
url='http://www.openpilot.org',
|
||
|
packages=['openpilot', 'openpilot.uavtalk', 'openpilot.uavobjects'],
|
||
|
)
|