30 lines
612 B
TOML
30 lines
612 B
TOML
[project]
|
|
name = "sisyphus-langchain"
|
|
version = "0.1.0"
|
|
description = "Loki's Sisyphus multi-agent orchestrator recreated in LangChain/LangGraph"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"langgraph>=0.3.0",
|
|
"langchain>=0.3.0",
|
|
"langchain-openai>=0.3.0",
|
|
"langchain-anthropic>=0.3.0",
|
|
"langchain-core>=0.3.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"ruff>=0.8.0",
|
|
]
|
|
server = [
|
|
"langgraph-api>=0.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
sisyphus = "sisyphus_langchain.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|