-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
99 lines (88 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tool.poetry]
name = "home-assistant-omnik-inverter"
version = "2.6.4"
description = "Read data from your Omnik Inverter using home assistant."
authors = ["Robbin Janssen <[email protected]>"]
maintainers = ["Robbin Janssen <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/robbinjanssen/home-assistant-omnik-inverter"
repository = "https://github.com/robbinjanssen/home-assistant-omnik-inverter"
documentation = "https://github.com/robbinjanssen/home-assistant-omnik-inverter"
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.11"
omnikinverter = { git = "https://github.com/klaasnicolaas/python-omnikinverter.git", branch = "main" }
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.9"
black = "^24.8"
blacken-docs = "^1.18.0"
codespell = "^2.3.0"
darglint = "^1.8.1"
flake8 = "^4.0.1"
flake8-bandit = "^3.0.0"
flake8-bugbear = "^23.3.12"
flake8-builtins = "^2.5.0"
flake8-comprehensions = "^3.15.0"
flake8-docstrings = "^1.7.0"
flake8-eradicate = "^1.4.0"
flake8-markdown = "^0.3.0"
flake8-simplify = "^0.21.0"
isort = "^5.13.2"
pre-commit = "^3.8.0"
pre-commit-hooks = "^4.6.0"
pylint = "^3.2.6"
pyupgrade = "^3.17.0"
vulture = "^2.11"
yamllint = "^1.35.1"
types-cachetools = "^5.4.0"
[tool.black]
target-version = ['py311']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pylint.BASIC]
good-names = [
"_",
"ex",
"fp",
"i",
"id",
"j",
"k",
"on",
"Run",
"T",
]
[tool.pylint."MESSAGES CONTROL"]
disable= [
"too-few-public-methods",
"duplicate-code",
"format",
"unsubscriptable-object",
"import-error",
"no-name-in-module",
"cyclic-import",
]
[tool.pylint.SIMILARITIES]
ignore-imports = true
[tool.pylint.FORMAT]
max-line-length=88
[tool.pylint.DESIGN]
max-attributes=20
[tool.vulture]
min_confidence = 80
paths = ["custom_components/omnik_inverter"]
verbose = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"