forked from dronekit/dronekit-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.12 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, Extension
import platform
version = '2.0.0b2'
setup (name = 'dronekit',
zip_safe=True,
version = version,
description = 'Python language bindings for the DroneApi',
long_description = 'Python language bindings for the DroneApi',
url = 'https://github.com/dronekit/dronekit-python',
author = '3D Robotics',
install_requires = ['pymavlink >= 1.1.62',
'protobuf >= 2.5.0',
'requests == 2.5.1' ],
author_email = 'tim@3drobotics.com, kevinh@geeksville.com',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'
],
license='apache',
packages = ['dronekit', 'dronekit.module', 'dronekit.lib' ],
ext_modules = [])