24 lines
474 B
TOML
24 lines
474 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lg_common"]
|
|
|
|
[project]
|
|
name = "venv"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"langchain>=1.3.14",
|
|
"langchain-openai",
|
|
"langgraph",
|
|
"langgraph-checkpoint",
|
|
"langgraph-sdk",
|
|
"rich",
|
|
"pydantic",
|
|
"ipykernel>=7.3.0",
|
|
"python-dotenv",
|
|
"loguru>=0.7.3",
|
|
"langgraph-checkpoint-postgres>=3.1.1",
|
|
] |