- Update version to 0.4.2 in all components - Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-litellm, hindsight-embed - Python client: hindsight-clients/python - TypeScript client: hindsight-clients/typescript - Rust CLI: hindsight-cli - Control Plane: hindsight-control-plane - Helm chart - Sync documentation to version-0.4
31 lines
688 B
TOML
31 lines
688 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "hindsight-all"
|
|
version = "0.4.2"
|
|
description = "Hindsight: Agent Memory That Works Like Human Memory - All-in-One Bundle"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"hindsight-api>=0.0.7",
|
|
"hindsight-client>=0.0.7",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
hindsight-api = { workspace = true }
|
|
hindsight-client = { workspace = true }
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["hindsight"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|