-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (65 loc) · 1.69 KB
/
pyproject.toml
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
72
73
[project]
name = "eq3btsmart"
authors = [{ name = "Lennard Beers", email = "[email protected]" }]
maintainers = [{ name = "Lennard Beers", email = "[email protected]" }]
license = { file = "LICENSE.md" }
keywords = [
"eq3",
"eq3btsmart",
"thermostat",
"bluetooth",
"smart",
"homeassistant",
"bleak",
"asyncio",
"library",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
description = "Python library to interact with eQ-3 Bluetooth Smart thermostats"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"bleak>=0.22.3",
"construct-typing>=0.6.2",
]
version = "0.0.0"
[dependency-groups]
dev = [
"codespell",
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
"ruff",
]
docs = [
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocstrings[python]",
]
[project.urls]
Repository = "https://github.com/eulemitkeule/eq3btsmart"
Documentation = "https://github.com/eulemitkeule/eq3btsmart/blob/master/README.md"
Changelog = "https://github.com/EuleMitKeule/eq3btsmart/releases"
Issues = "https://github.com/eulemitkeule/eq3btsmart/issues"
Download = "https://pypi.org/project/eq3btsmart/"
[tool.mypy]
check_untyped_defs = true
strict = true
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff.lint]
select = ["D", "ARG"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"!eq3btsmart/**.py" = ["D"]
[tool.codespell]
dictionary = "codespell.dict"