meshcore_py/pyproject.toml

29 lines
792 B
TOML
Raw Permalink Normal View History

2025-03-24 16:55:37 +01:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshcore"
2025-07-09 17:13:40 +02:00
version = "1.9.14"
2025-03-24 16:55:37 +01:00
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
{ name="Alex Wolden", email="awolden@gmail.com" },
2025-03-24 16:55:37 +01:00
]
description = "Base classes for communicating with meshcore companion radios"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
2025-05-14 14:48:11 +02:00
dependencies = [ "bleak", "pyserial-asyncio", "pycayennelpp" ]
2025-03-24 16:55:37 +01:00
2025-04-13 22:55:31 -07:00
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
2025-03-24 16:55:37 +01:00
[project.urls]
2025-03-24 17:03:45 +01:00
Homepage = "https://github.com/fdlamotte/meshcore_py"
Issues = "https://github.com/fdlamotte/meshcore_py/issues"