From a8e3163edb4496e823a730f84e0c521b34c48d86 Mon Sep 17 00:00:00 2001 From: citizen204 Date: Mon, 15 Jun 2026 19:53:45 +0930 Subject: [PATCH] fix: remove invalid CLI entrypoint from pyproject.toml The [project.scripts] section referenced bedrock_agentcore.cli:main, but no cli module exists in the package, causing ModuleNotFoundError when running the installed bedrock-agentcore command. Fixes #364 --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7fa9d2e2..ef231bd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,9 +36,6 @@ dependencies = [ "websockets>=13.0", ] -[project.scripts] -bedrock-agentcore = "bedrock_agentcore.cli:main" - [tool.hatch.metadata] allow-direct-references = true