Files
ping/pyproject.toml
T
2026-05-02 12:29:22 -05:00

33 lines
516 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"]
[tool.setuptools]
packages = ["velping"]
[tool.setuptools.package-data]
velping = [
"statics/*",
"templates/*",
]