-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 919 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 919 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
[project]
name = "hass-livebox-component"
version = "0.0.0"
description = "Development environment for the Orange Livebox Home Assistant custom component"
requires-python = ">=3.13.2"
dependencies = []
[tool.setuptools]
# Non-packageable project (see [tool.uv] package = false):
# disable automatic discovery, which makes node_modules irrelevant.
packages = []
[dependency-groups]
dev = [
"aiosysbus",
"async-upnp-client",
"prek",
"pytest-homeassistant-custom-component",
"pytest-asyncio",
"python-typing-update",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra --cov=custom_components --cov-report=term-missing --cov-fail-under=85"
pythonpath = ["."]
testpaths = ["tests/"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
log_cli = true
[tool.uv]
package = false
[tool.ruff]
target-version = "py313"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]