46 lines
920 B
TOML
46 lines
920 B
TOML
[project]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = "Backend for stealth-ai-relay"
|
|
authors = [
|
|
{ name = "h", email = "h@kotikot.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiogram>=3.24.0",
|
|
"convex>=0.7.0",
|
|
"pydantic-ai-slim[google]>=1.44.0",
|
|
"pydantic-settings>=2.12.0",
|
|
"rich>=14.2.0",
|
|
"xkcdpass>=1.19.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.13,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = ["bot"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["ALL"]
|
|
ignore = ["CPY", "D1", "D203", "D212", "COM812", "RUF001", "RUF002", "RUF003"]
|
|
unfixable = ["F401"]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"*.lock" = ["ALL"]
|
|
"docs/*" = ["ALL"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true
|
|
skip-magic-trailing-comma = true
|
|
|
|
[tool.ruff.lint.isort]
|
|
split-on-trailing-comma = false
|