Skip to content

Commit 6eea703

Browse files
committed
missing files
1 parent 92a4cea commit 6eea703

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

pyproject.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "meshcore-cli"
7+
version = "0.3"
8+
authors = [
9+
{ name="Florent de Lamotte", email="[email protected]" },
10+
]
11+
description = "Command line interface to meshcore companion radios"
12+
readme = "README.md"
13+
requires-python = ">=3.10"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: OS Independent",
17+
]
18+
license = "MIT"
19+
license-files = ["LICEN[CS]E*"]
20+
dependencies = [ "meshcore" ]
21+
22+
[project.urls]
23+
Homepage = "https://github.com/fdlamotte/meshcore-cli"
24+
Issues = "https://github.com/fdlamotte/meshcore-cli/issues"
25+
26+
[project.scripts]
27+
meshcli = "meshcore_cli.meshcore_cli:cli"
28+
meshcore-cli = "meshcore_cli.meshcore_cli:cli"

src/meshcore_cli/__init__.py

Whitespace-only changes.

src/meshcore_cli/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if __name__ == "__main__":
2+
from meshcore_cli.meshcore_cli import cli
3+
cli()

0 commit comments

Comments
 (0)