24 lines
461 B
TOML
24 lines
461 B
TOML
|
[project]
|
||
|
name = "lwn-proxy"
|
||
|
version = "0.0.0"
|
||
|
description = "Add your description here"
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.10"
|
||
|
dependencies = [
|
||
|
"aiocache>=0.12.3",
|
||
|
"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"]
|