Files
writer-work-flow/packages/llm_gateway/pyproject.toml

29 lines
537 B
TOML

[project]
name = "ww-llm-gateway"
version = "0.0.0"
requires-python = ">=3.12"
dependencies = [
"openai>=2.43",
"anthropic>=0.111",
"google-genai>=2.9",
"instructor>=1.15",
"pydantic>=2.13",
"tenacity>=9.1",
"structlog>=26.1",
"ww-shared",
"ww-config",
"ww-db",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ww_llm_gateway"]
[tool.uv.sources]
ww-shared = { workspace = true }
ww-config = { workspace = true }
ww-db = { workspace = true }