This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.77 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "luxtronik2-modbus-proxy"
version = "1.1.0"
description = "Modbus TCP proxy for Luxtronik 2.0 heat pump controllers"
requires-python = ">=3.10"
license = { text = "MIT" }
readme = "README.md"
keywords = ["luxtronik", "modbus", "heat-pump", "evcc", "home-assistant"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
"Topic :: System :: Networking",
]
dependencies = [
"luxtronik==0.3.14",
"pymodbus==3.12.1",
"pydantic>=2.12,<3",
"pydantic-settings[yaml]>=2.13,<3",
"structlog>=25.0",
"PyYAML>=6.0",
]
[project.scripts]
luxtronik2-modbus-proxy = "luxtronik2_modbus_proxy.main:cli"
[project.optional-dependencies]
dev = [
"pytest>=9.0",
"pytest-asyncio>=1.3",
"pytest-cov",
"ruff",
"mypy",
]
[project.urls]
Homepage = "https://github.com/OWNER/luxtronik2-modbus-proxy"
Repository = "https://github.com/OWNER/luxtronik2-modbus-proxy"
Documentation = "https://OWNER.github.io/luxtronik2-modbus-proxy"
"Bug Tracker" = "https://github.com/OWNER/luxtronik2-modbus-proxy/issues"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "D", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
strict = true
python_version = "3.10"