mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
a1b8eb8b28
`pnpm run check-format` (`oxfmt --check .`) reported 22 files. Nineteen are byte-identical to origin/main and are pre-existing repository state. These three were ADDED by this branch, so their formatting failures are regressions this epic introduced rather than inherited: - dev-docs/architecture/intelligence-adapters-plan.md - sdk-python-agent-framework/pyproject.toml - sdk-python-langgraph/pyproject.toml The two pyproject.toml files matter in particular because CI's scoped format job in static_quality.yml collects only js/jsx/ts/tsx/mjs/cjs/json/jsonc/json5/md/css/yml/yaml/html/vue/py — it never sees `*.toml`, so it would not have auto-fixed them and check-format would have stayed red. All changes are cosmetic: the pyproject edits are line-wrapping at printWidth 80 with adapter version bounds untouched, and the markdown change is table-separator padding only (token streams before and after are identical at 8868 tokens).
50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "copilotkit-intelligence-langgraph"
|
|
version = "0.1.0"
|
|
description = "LangGraph Python adapter for verified CopilotKit Intelligence Registry skills"
|
|
authors = ["CopilotKit <hello@copilotkit.ai>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://copilotkit.ai"
|
|
repository = "https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python-langgraph"
|
|
keywords = [
|
|
"copilotkit",
|
|
"intelligence",
|
|
"langgraph",
|
|
"langchain",
|
|
"agents",
|
|
"skills",
|
|
]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
]
|
|
packages = [{ include = "copilotkit_intelligence_langgraph", from = "src" }]
|
|
include = ["src/copilotkit_intelligence_langgraph/py.typed"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10"
|
|
copilotkit = ">=0.1.95,<1.0.0"
|
|
langgraph = ">=1.2.2,<2.0.0"
|
|
langchain = ">=1.3.2,<2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2,<10.0.0",
|
|
"pytest-asyncio>=1.0.0,<2.0.0",
|
|
"build>=1.3.0,<2.0.0",
|
|
"twine>=6.2.0,<7.0.0",
|
|
"toml>=0.10.2,<1.0.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|