meshcore-cli/pyproject.toml

32 lines
848 B
TOML
Raw Permalink Normal View History

2025-03-25 10:23:45 +01:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshcore-cli"
2026-04-09 11:47:47 +02:00
version = "1.5.6"
2025-03-25 10:23:45 +01:00
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
]
2026-02-10 09:06:38 -04:00
description = "Command line interface to meshcore companion radios and repeaters"
2025-03-25 10:23:45 +01:00
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
2026-04-09 11:47:47 +02:00
dependencies = [ "meshcore >= 2.3.6",
2026-02-10 09:06:38 -04:00
"bleak >= 0.22",
2025-11-25 20:48:16 +01:00
"prompt_toolkit >= 3.0.50",
2026-03-05 09:32:42 -04:00
"requests >= 2.28.0" ]
2025-03-25 10:23:45 +01:00
[project.urls]
Homepage = "https://github.com/fdlamotte/meshcore-cli"
Issues = "https://github.com/fdlamotte/meshcore-cli/issues"
[project.scripts]
meshcli = "meshcore_cli.meshcore_cli:cli"
meshcore-cli = "meshcore_cli.meshcore_cli:cli"