20 lines
412 B
TOML
20 lines
412 B
TOML
[project]
|
|
name = "pipeline_api"
|
|
version = "0.1.0"
|
|
description = "ETL Pipeline and FastAPI for electricity price data"
|
|
dependencies = [
|
|
"click>=8.3.1",
|
|
"fastapi>=0.128.7",
|
|
"pyarrow>=23.0.0",
|
|
"requests>=2.32.5",
|
|
"tenacity>=9.1.4",
|
|
"uvicorn>=0.40.0",
|
|
"common",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
common = { workspace = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|