-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 995 Bytes
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
[project]
name = "qss"
description = "QuestDB State Storage (QSS) for Home Assistant"
license = "MIT"
keywords = [
"homeassistant",
"questdb",
"database",
"timeseries",
"analytics",
"storage",
]
dynamic = ["version", "dependencies"]
readme = "README.md"
authors = [{name = "CM000n"}]
requires-python = '>=3.13.2,<3.14'
[tool.poetry]
version = "v0.1.2"
package-mode = false
requires-poetry = '>=2.0,<3.0'
[tool.poetry.dependencies]
homeassistant = "^2026"
questdb = "^4.1.0"
tenacity = "^9.0.0"
[tool.poetry.group.dev.dependencies]
voluptuous-stubs = "^0.1"
homeassistant-stubs = "^2026"
pre-commit = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
fix = true
lint.exclude = ["tests/**"]
lint.select = ["ALL"]
lint.extend-ignore = ["D203", "D213", "COM812"]
lint.pydocstyle.convention = "google"
lint.isort.split-on-trailing-comma = false
format.docstring-code-format = true
format.skip-magic-trailing-comma = true