Files
flix/tools/pyproject.toml
Oleg Kalachev 40fc4b96b5 Implement AUTO mode for automatic flights
Support SET_ATTITUDE_TARGET, SET_ACTUATOR_CONTROL_TARGET in mavlink.
ACTUATOR_OUTPUT_STATUS is changed ACTUATOR_CONTROL_TARGET to match used message for setting motor outputs.
Add support for changing mode from mavlink.
Support automatic flights in pyflix.
2025-08-28 00:49:24 +03:00

30 lines
681 B
TOML

[project]
name = "pyflix"
version = "0.6"
description = "Python API for Flix drone"
authors = [{ name="Oleg Kalachev", email="okalachev@gmail.com" }]
license = "MIT"
readme = "pyflix/README.md"
requires-python = ">=3.8"
dependencies = [
"pymavlink",
]
[project.scripts]
flix-proxy = "pyflix.proxy:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pyflix"]
[tool.setuptools.package-data]
pyflix = ["README.md"]
[project.urls]
Homepage = "https://github.com/okalachev/flix/tree/master/tools/pyflix"
Repository = "https://github.com/okalachev/flix"
Issues = "https://github.com/okalachev/flix/issues"