mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
* `strict=False` is the default, pyupgrade to min version 3.10 adds this to be explicit w/ behavior
22 lines
419 B
TOML
22 lines
419 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "langgraph-examples"
|
|
version = "0.1.0"
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"langgraph-cli",
|
|
"langgraph-sdk",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
langgraph-cli = { path = "../cli", editable = true }
|
|
langgraph-sdk = { path = "../sdk_py", editable = true }
|
|
|
|
[tool.hatch.build]
|
|
packages = []
|