2024-11-12 18:59:33 -06:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "copilotkit"
|
2026-08-26 15:12:51 -07:00
|
|
|
version = "0.1.96"
|
2024-11-12 18:59:33 -06:00
|
|
|
description = "CopilotKit python SDK"
|
|
|
|
|
authors = ["Markus Ecker <markus.ecker@gmail.com>"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
homepage = "https://copilotkit.ai"
|
2025-03-18 15:40:01 -04:00
|
|
|
repository = "https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python"
|
2026-03-29 00:33:05 +00:00
|
|
|
keywords = [
|
|
|
|
|
"copilot",
|
|
|
|
|
"copilotkit",
|
|
|
|
|
"langgraph",
|
|
|
|
|
"langchain",
|
|
|
|
|
"ai",
|
|
|
|
|
"langsmith",
|
|
|
|
|
"langserve",
|
|
|
|
|
]
|
2026-04-12 15:08:06 -07:00
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Python :: 3.13",
|
2026-04-29 11:26:23 +02:00
|
|
|
"Programming Language :: Python :: 3.14",
|
2026-04-12 15:08:06 -07:00
|
|
|
]
|
2026-04-08 12:50:28 -07:00
|
|
|
packages = [{ include = "copilotkit" }]
|
2026-04-12 14:59:34 -07:00
|
|
|
include = ["copilotkit/*.json", "copilotkit/py.typed"]
|
2024-11-12 18:59:33 -06:00
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2026-04-29 10:43:53 +02:00
|
|
|
python = ">=3.10,<3.15"
|
2026-04-07 13:14:00 +02:00
|
|
|
langgraph = { version = ">=0.3.25,<2" }
|
2026-03-29 00:33:05 +00:00
|
|
|
langchain = { version = ">=0.3.0" }
|
2026-04-29 10:43:53 +02:00
|
|
|
crewai = { version = ">=0.118.0", optional = true, python = ">=3.10,<3.14" }
|
2026-06-19 17:51:02 +02:00
|
|
|
ag-ui-langgraph = { version = ">=0.0.42", extras = ["fastapi"] }
|
2026-06-09 16:59:50 +02:00
|
|
|
ag-ui-protocol = ">=0.1.15"
|
2026-02-23 16:19:04 -06:00
|
|
|
fastapi = ">=0.115.0,<1.0.0"
|
2026-07-23 16:48:27 +03:00
|
|
|
partialjson = ">=0.0.8,<2.0.0"
|
2024-11-12 18:59:33 -06:00
|
|
|
toml = "^0.10.2"
|
2026-04-29 13:50:16 +02:00
|
|
|
# Pin transitive: cp314 wheels first appear in 2.35.0; older versions
|
|
|
|
|
# would force a Rust source build that fails on PyO3 0.24 (capped at 3.13).
|
|
|
|
|
pydantic-core = ">=2.35.0"
|
2024-11-12 18:59:33 -06:00
|
|
|
|
2025-03-11 19:26:38 +01:00
|
|
|
[tool.poetry.extras]
|
|
|
|
|
crewai = ["crewai"]
|
|
|
|
|
|
2024-11-12 18:59:33 -06:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2026-03-06 08:32:06 -08:00
|
|
|
|
|
|
|
|
[dependency-groups]
|
2026-05-21 23:36:29 +02:00
|
|
|
dev = ["pytest (>=9.0.2,<10.0.0)", "pytest-asyncio (>=1.0.0,<2.0.0)"]
|