-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 705 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 705 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
[project]
name = "bin-collection"
version = "1.0.3"
description = "Home Assistant custom integration for Dutch waste collection calendars"
readme = "README.md"
requires-python = ">=3.14.2"
license = "AGPL-3.0-only"
dependencies = [
"homeassistant>=2026.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1.1",
"pytest-cov>=7.1",
"ruff>=0.16.5",
"ty>=0.0.75",
"voluptuous-serialize",
]
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py"]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "SIM", "FBT"]
ignore = ["E501"]
[tool.ty.environment]
python-version = "3.14"