28 lines
537 B
TOML
28 lines
537 B
TOML
[project]
|
|
name = "ww-core"
|
|
version = "0.0.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"langgraph>=1.2",
|
|
"langgraph-checkpoint-postgres>=3.1",
|
|
"pydantic>=2.13",
|
|
"structlog>=26.1",
|
|
"ww-shared",
|
|
"ww-config",
|
|
"ww-db",
|
|
"ww-llm-gateway",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["ww_core"]
|
|
|
|
[tool.uv.sources]
|
|
ww-shared = { workspace = true }
|
|
ww-config = { workspace = true }
|
|
ww-db = { workspace = true }
|
|
ww-llm-gateway = { workspace = true }
|