24 lines
398 B
TOML
24 lines
398 B
TOML
[project]
|
|
name = "velping"
|
|
version = "0.1.0"
|
|
description = "A simple pinger"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.136.1",
|
|
"httpx>=0.28.1",
|
|
"jinja2>=3.1.6",
|
|
"pydantic>=2.13.3",
|
|
"uvicorn>=0.46.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 88
|
|
|
|
[tool.ruff.format]
|
|
indent-style = "tab"
|
|
docstring-code-format = false
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["I001", "FAST"]
|