-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 891 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 891 Bytes
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
#!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
setup(
name='edlib',
version='1.1.0',
packages=find_packages(exclude=['examples', 'tests']),
description='Espdrone python driver',
url='https://github.com/NelsenEW/espdrone-lib-python',
scripts=['tools/scripts/espdrone_scan'],
author='Bitcraze and contributors',
author_email='contact@bitcraze.io',
license='GPLv3',
maintainer='Nelsen, Andrian, Justin',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: System :: Hardware :: Hardware Drivers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='driver espdrone quadcopter',
install_requires=['pyusb==1.0.0b2', 'opencv-python<4.3'],
)