This commit is contained in:
Lars Nolden
2026-07-24 12:25:14 +02:00
parent 909ec41b39
commit fc8813c14a
28 changed files with 1805 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "oms-tui"
version = "0.1.0"
description = "TUI for monitoring OMS / wireless M-Bus smart meters via wmbusmeters"
requires-python = ">=3.10"
dependencies = ["textual>=0.60"]
[project.scripts]
oms-tui = "oms_tui.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["oms_tui*"]
[tool.setuptools.package-data]
oms_tui = ["*.tcss"]
[tool.pytest.ini_options]
asyncio_mode = "auto"