23 lines
510 B
TOML
23 lines
510 B
TOML
[tool.poetry]
|
|
name = "data-service"
|
|
version = "0.1.0"
|
|
description = "DataViz Pro Data 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"
|
|
openpyxl = "^3.1"
|
|
xlrd = "^2.0"
|
|
pandas = "^2.2"
|
|
python-multipart = "^0.0.18"
|
|
pydantic = "^2.10"
|
|
pydantic-settings = "^2.7"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|