-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (65 loc) · 1.46 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
[build-system]
requires = [
"poetry-core"
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "onyx-client"
version = "9.0.0"
description = "HTTP Client for Hella's ONYX.CENTER API."
license = "MIT"
authors = [
"Daniel Muehlbachler-Pietrzykowski <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/muhlba91/onyx-client"
keywords = [
"hella-info",
"onyx",
"onyx-center"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.8.5"
asyncio = "^3.4.0"
[tool.poetry.dev-dependencies]
pytest = "^8.0.0"
pytest-cov = { extras = ["toml"], version = "^6.0.0" }
coverage = { extras = ["toml"], version = "^7.0.0" }
pre-commit = "^4.0.0"
pytest-asyncio = "^0.24.0"
aioresponses = "^0.7.4"
ruff = "^0.7.0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--strict-markers --cov=onyx_client"
testpaths = [
"tests",
]
norecursedirs = [
".git",
]
[tool.coverage.run]
relative_files = true
source = [
"onyx_client",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplemented()",
"if __name__ == .__main__.:",
"main()",
"parser\\..",
"argparse\\..",
]
fail_under = 95
show_missing = true