mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 06:35:46 +02:00
* Migrate to `uv` * Format `pyproject.toml` files properly * Remove upper bounds on dependencies, and bounds on dev dependencies (we should be using latest) * Move to hatch for packaing In the future we should: * Set up dependabot / automate lockfile updates and tests * Add tests for min compatible versions (I'll do this right after merge) * Use dynamic versioning * Bump `pydantic` to v2.11.4 in the lockfile, we have some tests failing
22 lines
418 B
TOML
22 lines
418 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.9"
|
|
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 = []
|