20 lines
332 B
TOML
20 lines
332 B
TOML
[project]
|
|
name = "aioa-ai-service"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi==0.116.1",
|
|
"httpx==0.28.1",
|
|
"pydantic-settings==2.10.1",
|
|
"uvicorn[standard]==0.35.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==8.4.1",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|