mirror of
https://github.com/meshtastic/python.git
synced 2026-02-18 14:49:24 -05:00
add (optional) poe tool config for easy running of external commands
This commit is contained in:
@@ -7,7 +7,7 @@ license = "GPL-3.0-only"
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.9,<3.13" # 3.9 is needed for pandas, bleak requires a max of 3.13 for some reason
|
||||
python = "^3.9,<3.13" # 3.9 is needed for pandas, bleak requires a max of 3.13 for some reason
|
||||
pyserial = "^3.5"
|
||||
protobuf = ">=5.26.0"
|
||||
dotmap = "^1.3.30"
|
||||
@@ -22,7 +22,7 @@ pyyaml = "^6.0.1"
|
||||
pypubsub = "^4.0.3"
|
||||
bleak = "^0.21.1"
|
||||
packaging = "^24.0"
|
||||
riden = {git = "https://github.com/geeksville/riden.git#1.2.1"}
|
||||
riden = { git = "https://github.com/geeksville/riden.git#1.2.1" }
|
||||
pandas = "^2.2.2"
|
||||
parse = "^1.20.2"
|
||||
ppk2-api = "^0.9.2"
|
||||
@@ -51,6 +51,12 @@ tunnel = ["pytap2"]
|
||||
meshtastic = "meshtastic.__main__:main"
|
||||
mesh-tunnel = "meshtastic.__main__:tunnelMain [tunnel]"
|
||||
|
||||
# "Poe the poet" (optional) provides an easy way of running non python tools inside the poetry virtualenv
|
||||
# if you would like to use it run "pipx install poe"
|
||||
# then you can do stuff like "poe code" to run vscode inside this environment
|
||||
[tool.poe.tasks]
|
||||
code = "code ."
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
Reference in New Issue
Block a user