src/TelloPy/setup.py
Go to the documentation of this file.
1 from setuptools import setup, find_packages
2 from codecs import open
3 from os import path
4 
5 here = path.abspath(path.dirname(__file__))
6 
7 with open(path.join(here, 'README.md'), encoding='utf-8') as f:
8  long_description = f.read()
9 
10 setup(
11  name='tellopy',
12 
13  version='0.7.0.dev0',
14 
15  description='DJI Tello drone controller',
16  url='https://github.com/hanyazou/TelloPy',
17  author='Hanyazou',
18  author_email='hanyazou@gmail.com',
19  python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
20 
21  classifiers=[
22  # How mature is this project? Common values are
23  # 3 - Alpha
24  # 4 - Beta
25  # 5 - Production/Stable
26  'Development Status :: 3 - Alpha',
27 
28  # Indicate who your project is intended for
29  'Intended Audience :: Developers',
30  'Topic :: Software Development :: Libraries',
31 
32  # Pick your license as you wish
33  'License :: OSI Approved :: Apache Software License',
34 
35  # Specify the Python versions you support here. In particular, ensure
36  # that you indicate whether you support Python 2, Python 3 or both.
37  # 'Programming Language :: Python :: 2',
38  'Programming Language :: Python :: 2.7',
39  # 'Programming Language :: Python :: 3',
40  # 'Programming Language :: Python :: 3.4',
41  'Programming Language :: Python :: 3.5',
42  'Programming Language :: Python :: 3.6',
43  ],
44 
45  keywords='sample development robotics drone',
46 
47  packages=find_packages(exclude=['contrib', 'docs', 'tests', 'files']),
48 
49  install_requires=[
50  ],
51 
52  project_urls={
53  'Bug Reports': 'https://github.com/hanyazou/TelloPy/issues',
54  'Say Thanks!': 'https://twitter.com/hanyazou',
55  'Source': 'https://github.com/hanyazou/TelloPy',
56  },
57 )


tello_driver
Author(s): Jordy van Appeven
autogenerated on Wed May 13 2020 03:34:54