mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
* checkpoint-sqlite: new library for sqlite checkpointer implementation
32 lines
930 B
TOML
32 lines
930 B
TOML
[tool.poetry]
|
|
name = "langgraph-monorepo"
|
|
version = "0.0.1"
|
|
description = "LangGraph monorepo"
|
|
authors = []
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
langgraph = { path = "libs/langgraph/", develop = true }
|
|
langgraph-checkpoint = { path = "libs/checkpoint/", develop = true }
|
|
langgraph-checkpoint-sqlite = { path = "libs/checkpoint-sqlite", develop = true }
|
|
langgraph-sdk = {path = "libs/sdk-py", develop = true}
|
|
mkdocs = "^1.6.0"
|
|
mkdocstrings = "^0.25.1"
|
|
mkdocstrings-python = "^1.10.4"
|
|
mkdocs-jupyter = "^0.24.7"
|
|
mkdocs-redirects = "^1.2.1"
|
|
mkdocs-minify-plugin = "^0.8.0"
|
|
mkdocs-rss-plugin = "^1.13.1"
|
|
mkdocs-git-committers-plugin-2 = "^2.3.0"
|
|
mkdocs-material = {extras = ["imaging"], version = "^9.5.27"}
|
|
markdown-include = "^0.8.1"
|
|
markdown-callouts = "^0.4.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|