mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-30 03:39:38 +02:00
37 lines
703 B
TOML
37 lines
703 B
TOML
[tool.poetry]
|
|
name = "langgraph-cli-install"
|
|
version = "0.0.1-rc1"
|
|
description = "Simple installer for langgraph-cli"
|
|
authors = []
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://www.github.com/langchain-ai/langgraph"
|
|
packages = [{ include = "langgraph_cli_install" }]
|
|
|
|
[tool.poetry.scripts]
|
|
langgraph-cli-install = "langgraph_cli_install.main:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9.0,<4.0"
|
|
packaging = ">=23.0"
|
|
uv = ">=0.6.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
lint.select = [
|
|
# pycodestyle
|
|
"E",
|
|
# Pyflakes
|
|
"F",
|
|
# pyupgrade
|
|
"UP",
|
|
# flake8-bugbear
|
|
"B",
|
|
# isort
|
|
"I",
|
|
]
|
|
lint.ignore = ["E501", "B008"]
|