1
Fork 0
lwn-feed-proxy/pyproject.toml
Jake Howard 62c2f929d6
Remove cache
For this use case, it's unnecessary
2024-10-22 21:54:29 +01:00

22 lines
437 B
TOML

[project]
name = "lwn-proxy"
version = "0.0.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12.3",
"granian[reload]>=1.6.1",
"httpx>=0.27.2",
"lxml>=5.3.0",
"starlette>=0.41.0",
]
[tool.uv]
dev-dependencies = [
"ruff>=0.7.0",
]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "A", "C4", "T20"]
ignore = ["E501", "DJ008"]