1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
[project]
name = "moehlenhoff-alpha2"
version = "1.4.0"
description = "Python client for the Moehlenhoff Alpha2 underfloor heating system"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.10"
dependencies = [
"aiohttp",
"xmltodict",
]
[[project.authors]]
name = "Jan Schneider"
email = "oss@janschneider.net"
[project.urls]
Homepage = "https://github.com/j-a-n/python-moehlenhoff-alpha2"
Repository = "https://github.com/j-a-n/python-moehlenhoff-alpha2"
[dependency-groups]
dev = [
"mypy>=1.14.1",
"pytest>=7.1",
"pytest-asyncio>=0.18",
"pytest-coverage>=0.0",
"ruff>=0.11.0",
"types-xmltodict>=0.14.0.20241009",
]
[tool.uv]
package = true
[tool.ruff]
line-length = 140
target-version = "py310"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
follow_imports = "silent"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
|