mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
10 lines
264 B
Python
10 lines
264 B
Python
from distutils.core import setup
|
|
import glob
|
|
|
|
setup(name='LibrePilot UAVTalk',
|
|
version='1.0',
|
|
description='LibrePilot UAVTalk',
|
|
url='http://www.librepilot.org',
|
|
packages=['librepilot', 'librepilot.uavtalk', 'librepilot.uavobjects'],
|
|
)
|