22 lines
405 B
TOML
22 lines
405 B
TOML
[project]
|
|
name = "arch-design-dashboard"
|
|
version = "0.1.0"
|
|
description = "Architecture Design Dashboard Backend"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"pyyaml>=6.0",
|
|
"python-multipart>=0.0.9",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"httpx>=0.27.0",
|
|
]
|