30 lines
570 B
TOML
30 lines
570 B
TOML
[project]
|
|
name = "ww-api"
|
|
version = "0.0.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.137",
|
|
"uvicorn[standard]>=0.49",
|
|
"structlog>=26.1",
|
|
"cryptography>=49",
|
|
"ww-shared",
|
|
"ww-config",
|
|
"ww-db",
|
|
"ww-llm-gateway",
|
|
"ww-core",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["ww_api"]
|
|
|
|
[tool.uv.sources]
|
|
ww-shared = { workspace = true }
|
|
ww-config = { workspace = true }
|
|
ww-db = { workspace = true }
|
|
ww-llm-gateway = { workspace = true }
|
|
ww-core = { workspace = true }
|