Files
tout-doux/pyproject.toml
T
klemek 5ae0684d39
Python Lint CI / ruff (push) Successful in 6m31s
Python Lint CI / ruff-format-check (push) Successful in 6m46s
Python Lint CI / ty (push) Successful in 6m58s
TS Lint / ESLint (push) Successful in 6m6s
TS Lint / TypeScript (push) Successful in 5m55s
TS Lint / Oxlint (push) Successful in 5m56s
Docker Build / build (push) Successful in 13m56s
chore: 1.1.0
2026-07-15 16:34:53 +02:00

45 lines
820 B
TOML

[project]
name = "tout-doux"
version = "1.1.0"
description = ""
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 = [
"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", "C901"]
[tool.ty.src]
include = ["app"]
[tool.ty.environment]
python = "./.venv/bin/python3"