Files
tout-doux/pyproject.toml
T
klemek 59a6f49700
Python Lint CI / ruff-format-check (push) Successful in 44s
Python Lint CI / ty (push) Successful in 44s
Python Lint CI / ruff (push) Successful in 44s
feat: rate limiting
2026-07-03 15:33:06 +02:00

48 lines
893 B
TOML

[project]
name = "tout-doux"
version = "0.0.0"
description = ""
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"flask-limiter[redis]>=4.1.1,<5.0.0",
"flask[async]>=3.1.3,<4.0.0",
"gunicorn>=26.0.0,<27.0.0",
"tortoise-orm[asyncpg]>=1.1.7,<2.0.0",
]
[project.scripts]
tout-doux = "app.__main__:main"
[build-system]
requires = ["uv_build>=0.11.7,<0.12"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"coverage>=7.13.5,<8.0.0",
"pytest>=9.0.3,<10.0.0",
"ruff>=0.15.12,<0.16.0",
"ty>=0.0.34,<0.0.35",
]
[tool.uv]
add-bounds = "major"
[tool.uv.build-backend]
module-root = ""
module-name = "app"
[tool.ruff]
exclude = ["app/migrations"]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT", "S104"]
[tool.ty.src]
include = ["app"]
[tool.ty.environment]
python = "./.venv/bin/python3"