18 lines
427 B
TOML
Executable File
18 lines
427 B
TOML
Executable File
[project]
|
|
name = "market-api"
|
|
version = "0.1.0"
|
|
description = "FastAPI service for importing monthly market Excel data into PostgreSQL."
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115,<1.0",
|
|
"uvicorn[standard]>=0.30,<1.0",
|
|
"python-multipart>=0.0.20,<1.0",
|
|
"openpyxl>=3.1,<4.0",
|
|
"psycopg[binary]>=3.2,<4.0",
|
|
"python-docx>=1.1,<2.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|