20 lines
451 B
TOML
20 lines
451 B
TOML
[tool.poetry]
|
|
name = "chart-service"
|
|
version = "0.1.0"
|
|
description = "DataViz Pro Chart Service"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
fastapi = "^0.115"
|
|
uvicorn = {extras = ["standard"], version = "^0.34"}
|
|
sqlalchemy = {extras = ["asyncio"], version = "^2.0"}
|
|
asyncpg = "^0.30"
|
|
alembic = "^1.14"
|
|
pydantic = "^2.10"
|
|
pydantic-settings = "^2.7"
|
|
httpx = "^0.27"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|