mirror of
https://github.com/okalachev/flix.git
synced 2025-08-17 09:06:11 +00:00
Add Python library (#20)
This commit is contained in:
28
tools/pyproject.toml
Normal file
28
tools/pyproject.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[project]
|
||||
name = "pyflix"
|
||||
version = "0.5"
|
||||
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"
|
||||
Issues = "https://github.com/okalachev/flix/issues"
|
Reference in New Issue
Block a user