mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling>=1.27,<2"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "copilotkit-intelligence-adk"
|
|
version = "0.1.0"
|
|
description = "Automatic learned skill delivery for native ADK agents"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
license-files = ["LICENSE"]
|
|
requires-python = ">=3.11"
|
|
dependencies = ["copilotkit-intelligence-runtime>=0.1.0,<0.2", "google-adk>=1.17,<2"]
|
|
|
|
[tool.uv.sources]
|
|
copilotkit-intelligence-runtime = { path = "../runtime-python", editable = true }
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8,<9", "pytest-asyncio>=0.25,<1", "ruff>=0.11,<1", "mypy>=1.15,<2"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/copilotkit_intelligence_adk"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["src", "build_hook.py", "README.md", "LICENSE", "pyproject.toml"]
|
|
|
|
[tool.hatch.build.hooks.custom]
|
|
path = "build_hook.py"
|
|
|
|
[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
|