Initialize hasspy project with basic structure and MQTT client implementation

This commit is contained in:
Edgar P. Burkhart 2025-03-08 23:39:33 +01:00
commit fa8bb1d8a9
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
9 changed files with 275 additions and 0 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[project]
name = "hasspy"
version = "0.1.0"
description = "Home Assistant utility"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"paho-mqtt>=2.1.0",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"ruff>=0.9.10",
]