Files
graph-requirements-planner/backend/pyproject.toml
2026-03-18 06:40:53 -05:00

33 lines
623 B
TOML

[project]
name = "req-planner"
version = "0.1.0"
description = "General-purpose requirements management app"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"sqlalchemy>=2.0.36",
"alembic>=1.14.0",
"pydantic>=2.10.0",
"pyyaml>=6.0.2",
"aiosqlite>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"httpx>=0.28.0",
"ruff>=0.8.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"