- Add workspace-mcp >= 1.20.0 to pyproject.toml (pulls google-api-python-client etc. transitively) - Remove redundant google-api-python-client/google-auth/google-auth-httplib2 direct deps - Rewrite google_workspace.py: single Secrets Manager call per tool (client_id/client_secret are already in the credentials secret stored by oauth-handler, no separate oauth-client secret needed) - Mirror workspace-mcp output format for list_calendars and get_calendar_events - Add body_format param to get_gmail_message (text/html/raw) matching workspace-mcp API - Update uv.lock
22 lines
507 B
TOML
22 lines
507 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "agent_claw_main"
|
|
version = "0.1.0"
|
|
description = "AgentCore Runtime Application using Strands SDK"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"aws-opentelemetry-distro",
|
|
"bedrock-agentcore >= 1.0.3",
|
|
"botocore[crt] >= 1.35.0",
|
|
"strands-agents-tools >= 0.5.0",
|
|
"strands-agents >= 1.13.0",
|
|
"workspace-mcp >= 1.20.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|