- Update version to 0.2.0 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
48 lines
No EOL
1.1 KiB
TOML
48 lines
No EOL
1.1 KiB
TOML
[project]
|
|
name = "hindsight-client"
|
|
version = "0.2.0"
|
|
description = "Python client for Hindsight - Semantic memory system with personality-driven thinking"
|
|
authors = [
|
|
{name = "Hindsight Team"}
|
|
]
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"urllib3 (>=2.1.0,<3.0.0)",
|
|
"python-dateutil (>=2.8.2)",
|
|
"aiohttp (>=3.8.4)",
|
|
"aiohttp-retry (>=2.8.3)",
|
|
"pydantic (>=2)",
|
|
"typing-extensions (>=4.7.1)",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"requests>=2.28.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["hindsight_client", "hindsight_client_api"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
select = ["F", "I", "UP"]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
log_cli = true
|
|
log_cli_level = "INFO"
|
|
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
|
|
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
|
addopts = "--timeout 60 -n auto --durations=10 -v"
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
log_auto_indent = true |