Rewrite BMS skill from bash to Python

This commit is contained in:
Steve W
2026-04-08 02:19:50 +00:00
parent 568b825e11
commit 59d6e5ba3a
17 changed files with 938 additions and 1286 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "openclaw-bms"
version = "0.2.0"
description = "Python-based OpenClaw skill for Kaseya BMS ticket and note workflows."
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[project.scripts]
bms = "openclaw_bms.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]