24 lines
496 B
TOML
24 lines
496 B
TOML
[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"
|