Files
aidoit.top/apps/api/pyproject.toml
T
Pavel Kerndl c0b013f067
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s
Initialize Aidoit v0.1 monorepo
2026-07-27 18:27:37 +02:00

32 lines
552 B
TOML

[project]
name = "aidoit-api"
version = "0.1.0"
description = "Shared REST API for Aidoit"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"pydantic-settings>=2.7",
"sqlalchemy>=2.0",
"psycopg[binary]>=3.2",
"alembic>=1.14",
"redis>=5.2",
"httpx>=0.28"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.25",
"ruff>=0.9",
"mypy>=1.14"
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]