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

26 lines
481 B
TOML

[project]
name = "ww-skills"
version = "0.0.0"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.13",
"sqlalchemy>=2.0",
"ww-shared",
"ww-db",
"ww-agents",
"ww-llm-gateway",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ww_skills"]
[tool.uv.sources]
ww-shared = { workspace = true }
ww-db = { workspace = true }
ww-agents = { workspace = true }
ww-llm-gateway = { workspace = true }