forked from bitcraze/crazyflie-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (39 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
# read the contents of README.md file fo use in pypi description
directory = Path(__file__).parent
long_description = (directory / 'README.md').read_text()
setup(
name='cflib',
version='0.1.23',
packages=find_packages(exclude=['examples', 'test']),
description='Crazyflie python driver',
url='https://github.com/bitcraze/crazyflie-lib-python',
long_description=long_description,
long_description_content_type='text/markdown',
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',
'libusb-package~=1.0',
'scipy~=1.7',
'numpy>=1.20,<1.25',
],
# $ pip install -e .[dev]
extras_require={
'dev': [
'pre-commit'
],
},
)