forked from pytoyoda/ha_toyota
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.1 KB
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
[project]
name = "toyota"
description = "Toyota Connected Services EU community integration for Home Assistant"
license = "MIT"
version = "v2.3.0"
authors = [
{name = "CM000n", email = "simon.hoerrle@gmail.com"},
{name = "deejay1", email = "deejay1@srem.org"}
]
requires-python = '>=3.13,<3.14'
dynamic = ["dependencies"]
[tool.poetry]
package-mode = false
requires-poetry = '>=2.0'
[tool.poetry.dependencies]
arrow = "^1.3"
homeassistant = "^2025.4.0"
pytoyoda = "^5.1.0"
[tool.poetry.group.dev.dependencies]
homeassistant-stubs = "^2025.4"
pre-commit = "^4.1"
voluptuous-stubs = "^0.1"
pytest = "^8.3.5"
pytest-asyncio = "^0.26"
pytest-homeassistant-custom-component = "^0.13"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
fix = true
extend-exclude = ["tests"]
lint.select = ["ALL"]
lint.extend-ignore = ["D203", "D213", "COM812"]
lint.pydocstyle.convention = "google"
format.docstring-code-format = true