forked from meshcore-dev/meshcore-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 863 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshcore-cli"
version = "1.3.15"
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
]
description = "Command line interface to 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*"]
dependencies = [ "meshcore >= 2.2.3",
"bleak >= 0.22, <2.0",
"prompt_toolkit >= 3.0.50",
"requests >= 2.28.0",
"pycryptodome" ]
[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"