-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
68 lines (60 loc) · 1.08 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
[tool.poetry]
name = "qss"
version = "v0.0.10"
description = "QuestDB State Storage (QSS) for Home Assistant"
authors = ["CM000n"]
keywords = [
"homeassistant",
"questdb",
"database",
"timeseries",
"analytics",
"storage",
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
homeassistant = "^2023.12"
questdb = "^1.2.0"
tenacity = "^8.0.0"
[tool.poetry.dev-dependencies]
voluptuous-stubs = "^0.1"
homeassistant-stubs = "^2023.12"
pre-commit = "^2.21.0"
pre-commit-hooks = "^4.5.0"
codespell = "^2.0.0"
ruff = "^0.1.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = [
# Ruff specific
"RUF",
# Pylint
"PL",
# Pyflakes
"F",
# pep8-naming
"N",
# Pycodestyle
"E",
"W",
"D",
# flake8-2020
"YTT",
# flake8-async
"ASYNC",
# flake8-bugbear
"B",
# flake8-unused-arguments
"ARG",
# flake8-commas
"COM",
# Isort
"I"
]
extend-ignore = ["PLR2004", "D203", "D213", "COM812"]
line-length = 120
fix = true