-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
setup.py
35 lines (32 loc) · 1.04 KB
/
setup.py
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
28
29
30
31
32
33
34
35
import setuptools
import os
version = '2.9.2'
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
LongDescription = f.read()
setuptools.setup(
name='dronekit',
zip_safe=True,
version=version,
description='Developer Tools for Drones.',
long_description_content_type="text/markdown",
long_description=LongDescription,
url='https://github.com/dronekit/dronekit-python',
author='3D Robotics',
install_requires=[
'pymavlink>=2.2.20',
'monotonic>=1.3',
],
author_email='[email protected], [email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
license='apache',
packages=setuptools.find_packages()
)