24 lines
527 B
TOML
24 lines
527 B
TOML
[tool.poetry]
|
|
name = "export-service"
|
|
version = "0.1.0"
|
|
description = "DataViz Pro Export 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"
|
|
openpyxl = "^3.1"
|
|
python-pptx = "^1.0"
|
|
jinja2 = "^3.1"
|
|
reportlab = "^4.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|