mirror of
https://github.com/langchain-ai/memory-template.git
synced 2026-07-01 13:40:54 -04:00
69 lines
1.6 KiB
TOML
69 lines
1.6 KiB
TOML
[project]
|
|
name = "memory-graph"
|
|
version = "0.0.1"
|
|
description = "A long-term memory processor and example chatbot it works with."
|
|
authors = [
|
|
{ name = "William Fu-Hinthorn", email = "13333726+hinthornw@users.noreply.github.com" },
|
|
]
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"langgraph>=0.3",
|
|
"langgraph-checkpoint>=2.0.8",
|
|
# Optional (for selecting different models)
|
|
"langchain-openai>=0.3",
|
|
"langchain-anthropic>=0.3",
|
|
"langchain>=0.3.8",
|
|
"python-dotenv>=1.0.1",
|
|
"langgraph-sdk>=0.1.40",
|
|
"langmem>=0.0.25",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["memory_graph", "chatbot"]
|
|
[tool.setuptools.package-dir]
|
|
"memory_graph" = "src/memory_graph"
|
|
"langgraph.templates.memory_graph" = "src/memory_graph"
|
|
"chatbot" = "src/chatbot"
|
|
"langgraph.templates.chatbot" = "src/chatbot"
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
lint.select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"D", # pydocstyle
|
|
"D401", # First line should be in imperative mood
|
|
"T201",
|
|
"UP",
|
|
]
|
|
lint.ignore = ["UP006", "UP007", "UP035", "D417", "E501"]
|
|
include = ["*.py", "*.pyi", "*.ipynb"]
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*" = ["D", "UP"]
|
|
"ntbk/*" = ["D", "UP", "T201"]
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.mypy]
|
|
ignore_errors = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"langgraph-cli[inmem]>=0.2.10",
|
|
"mypy>=1.15.0",
|
|
"pytest-asyncio>=0.26.0",
|
|
"ruff>=0.11.2",
|
|
]
|
|
|