fleet-memory/hindsight-integrations/langmem/pyproject.toml
2026-01-19 14:27:31 +01:00

37 lines
871 B
TOML

[project]
name = "hindsight-langmem"
version = "0.0.1"
description = "LangGraph langmem drop-in replacement using Hindsight memory system"
authors = [
{name = "Hindsight Team"}
]
requires-python = ">=3.10"
dependencies = [
"langgraph>=0.2.0",
"hindsight-client",
# Transitive dependency security fixes
"aiohttp>=3.13.3", # Multiple DoS vulnerabilities
"langchain-core>=1.2.5", # Serialization injection vulnerability
"urllib3>=2.6.3", # Decompression-bomb safeguards bypass
]
[tool.uv.sources]
hindsight-client = { path = "../../hindsight-clients/python" }
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hindsight_langmem"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["F", "I", "UP"]