-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 859 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 859 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
[tool.poetry]
name = "home-dashboard"
version = "0.1.0"
description = "Self-hosted Home Assistant dashboard with touch-friendly tile UI"
authors = []
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.115"
uvicorn = {extras = ["standard"], version = "^0.34"}
httpx = "^0.28"
jinja2 = "^3.1"
pydantic-settings = "^2.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
pytest-asyncio = "^0.25"
httpx = "^0.28"
ruff = "^0.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM", "S"]
ignore = ["S104", "UP006", "UP007", "UP035"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101", "S105", "S106"]