forked from bitcraze/crazyflie-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (22 loc) · 784 Bytes
/
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
#!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
setup(
name='cflib',
version='0.1.6',
packages=find_packages(exclude=['examples', 'tests']),
description='Crazyflie python driver',
url='https://github.com/bitcraze/crazyflie-lib-python',
author='Bitcraze and contributors',
author_email='contact@bitcraze.io',
license='GPLv3',
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 crazyflie quadcopter',
install_requires='pyusb>=1.0.0b2',
)