Files
Mike Ryan 92afdb1f2c feat(runtime-python): add native Intelligence SDK and ASGI runtime
Provide native Intelligence SDK operations and runtime routes with
application-owned identity, durable runs, A2UI, MCP Apps, entitlements,
Inspector metadata, and telemetry. Include package docs, hosting examples,
and regression tests.
2026-09-11 15:55:30 -07:00

46 lines
889 B
TOML

[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "copilotkit-intelligence-runtime"
version = "0.1.0"
description = "Native ASGI runtime for CopilotKit Intelligence"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27,<1",
"websockets>=14,<16",
"starlette>=0.41,<1",
"mcp>=1.12,<2",
]
[dependency-groups]
dev = [
"pytest>=8,<9",
"pytest-asyncio>=0.25,<1",
"ruff>=0.11,<1",
"mypy>=1.15,<2",
"uvicorn>=0.34,<1",
"build>=1.2,<2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/copilotkit_runtime", "src/copilotkit_intelligence"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true