-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.47 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
[build-system]
requires = ["setuptools>=46.4.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nibe-mqtt"
authors = [
{name = "Jevgeni Kiski", email = "yozik04@gmail.com"}
]
description = "Nibe heatpump MQTT integration"
readme = "README.md"
keywords = ["nibe", "modbus", "library", "nibegw", "mqtt"]
license = "LGPL-3.0-or-later"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.9"
dependencies = [
"nibe >=2.7.0,<3.0.0",
"paho_mqtt>=2.1.0",
"voluptuous>=0.13.0",
"pyyaml>=6.0",
"python-slugify>=6.0.0",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "nibe_mqtt.__version__"}
[project.urls]
Homepage = "https://github.com/yozik04/nibe-mqtt"
"Bug Tracker" = "https://github.com/yozik04/nibe-mqtt/issues"
[project.scripts]
nibe-mqtt = "nibe_mqtt.console_scripts.nibe_mqtt_service:main"
[tool.setuptools]
packages = ["nibe_mqtt"]
zip-safe = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.black]
line-length = 160
[tool.coverage.report]
show_missing = true