23 lines
No EOL
397 B
TOML
23 lines
No EOL
397 B
TOML
[project]
|
|
name = "trmnl-report"
|
|
version = "0.1.0"
|
|
description = "Custom TRMNL plugin"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.115.12",
|
|
"httpx>=0.28.1",
|
|
"cachetools>=5.0.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
line-length = 100
|
|
indent-width = 4
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff>=0.12.11"] |