-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
38 lines (35 loc) · 1.51 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
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 7):
sys.exit('Sorry, Python < 3.7 is not supported.')
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="yamspy",
packages=[package for package in find_packages()],
version="0.3.3",
license="GPL",
description="Yet Another Implementation of Multiwii Serial Protocol Python Interface for Betaflight, iNAV, etc.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ricardo de Azambuja",
author_email="[email protected]",
url="https://github.com/thecognifly/YAMSPy",
download_url="https://github.com/thecognifly/YAMSPy/archive/refs/tags/v0.3.3.tar.gz",
keywords=['CogniFly', 'Betaflight', 'iNAV', 'drone', 'UAV', 'Multi Wii Serial Protocol', 'MSP'],
install_requires=['pyserial'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Framework :: Robot Framework :: Library',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
)