-
Notifications
You must be signed in to change notification settings - Fork 96
/
setup.py
36 lines (33 loc) · 1.01 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
36
import platform
from setuptools import find_packages, setup
readme = open('README.md').read()
setup(
name='udacidrone',
version='0.3.5',
description="Drone API for Udacity's Flying Car Nanodegree",
long_description=readme,
packages=find_packages(exclude=('tests*',)),
url='https://github.com/udacity/udacidrone',
author='Udacity FCND Team',
# TODO: Add team email
author_email='',
install_requires=[
'numpy>=1.12',
'future==0.16.0',
'lxml==4.1.1',
'pymavlink==2.2.8',
'utm==0.4',
'websockets==4.0.1',
'cflib>=0.1.6',
] + (['uvloop==0.9.1'] if platform.system() is not 'Windows' else []),
tests_require=['flake8', 'pytest'],
keywords='drone api udacity flying car quadrotor',
license='MIT License',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
],
# yapf
)