forked from thecognifly/YAMSPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.22 KB
/
pyproject.toml
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
[project]
name = "yamspy"
version = "0.4.0"
description = "Yet Another Implementation of Multiwii Serial Protocol Python Interface for Betaflight, iNAV, etc."
authors = [
{name = "Ricardo de Azambuja", email = "ricardo.azambuja@gmail.com"},
]
dependencies = [
"pyserial",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "GPL"}
keywords = ["CogniFly", "Betaflight", "iNAV", "drone", "UAV", "Multi Wii Serial Protocol", "MSP"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Robot Framework :: Library",
"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",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/thecognifly/YAMSPy"
Downloads = "https://github.com/thecognifly/YAMSPy/archive/refs/tags/v0.3.3.tar.gz"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"