mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
79ce60c580
Replace eslint and prettier with oxlint and oxfmt for faster linting and formatting across the monorepo. Remove all eslint and prettier configs, dependencies, and related packages. Add .oxlintrc.json and .oxfmtrc.json for the new tooling. Update CI workflows and lefthook hooks accordingly. Reformat codebase with oxfmt. https://claude.ai/code/session_01GMkSf29p78HuMR1mbXn8He
27 lines
579 B
TOML
27 lines
579 B
TOML
[project]
|
|
name = "a2ui-restaurant-finder"
|
|
version = "0.1.0"
|
|
description = "Sample Google ADK-based Restaurant finder agent that uses a2ui UI and is hosted as an A2A server agent."
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"a2a-sdk>=0.3.0",
|
|
"click>=8.1.8",
|
|
"google-adk>=1.8.0",
|
|
"google-genai>=1.27.0",
|
|
"python-dotenv>=1.1.0",
|
|
"litellm",
|
|
"a2ui",
|
|
"jsonschema>=4.0.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.uv.sources]
|
|
a2ui = { workspace = true }
|