22 lines
491 B
TOML
22 lines
491 B
TOML
[project]
|
|
name = "gig-poc-api"
|
|
version = "0.1.0"
|
|
description = "Flexible gig work POC API"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi==0.115.12",
|
|
"uvicorn[standard]==0.34.0",
|
|
"sqlalchemy==2.0.40",
|
|
"psycopg[binary]==3.2.6",
|
|
"pydantic==2.11.3",
|
|
"pydantic-settings==2.8.1",
|
|
"httpx==0.28.1",
|
|
"qdrant-client==1.14.2",
|
|
"python-dateutil==2.9.0.post0",
|
|
"orjson==3.10.16",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|