32 lines
552 B
TOML
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"]
|