File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed
Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1+ if __name__ == "__main__" :
2+ from meshcore_cli .meshcore_cli import cli
3+ cli ()
You can’t perform that action at this time.
0 commit comments