forked from speedyg0nz/MagInkDash
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 897 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
41
[tool.poetry]
name = "family-e-ink-dashboard"
version = "0.10.0"
description = "E-Ink dashboard showing weather and a family calendar running on an Inkplate 10, rendering done in a Docker container"
authors = ["speedyg0nz", "stefanthoss"]
license = "Apache License 2.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.115.12"
jinja2 = "^3.1.6"
pillow = "^11.0.0"
pytz = "^2025.2"
recurring-ical-events = "^3.6.1"
requests = "^2.32.3"
selenium = "^4.26.1"
structlog = "^24.4.0"
uvicorn = "^0.34.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.12.10"
pytest = "^8.4.1"
pytest-mock = "^3.14.1"
pytest-cov = "^6.2.1"
[tool.ruff]
line-length = 100
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E712"]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"