mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-02 05:08:44 +02:00
22 lines
445 B
TOML
22 lines
445 B
TOML
[project]
|
|
name = "agent"
|
|
version = "0.0.1"
|
|
description = "Agent for the uv monorepo example"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"langgraph>=0.6.0,<2",
|
|
"langchain-core>=0.2.14",
|
|
"shared",
|
|
"langgraph-checkpoint-postgres>=3.0.0"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["agent"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"agent" = "src/agent"
|