From b3354ac0026827bd7c968c32ec8786d0891d6a1a Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Sun, 26 Apr 2026 12:07:51 -0700 Subject: [PATCH] fix(pyproject): point PyPI URLs at the actual SDK repo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PyPI page for molecule-ai-sdk currently shows three broken links: Homepage / Repository / Documentation → github.com/hongmingw/molecule-monorepo (personal account, wrong repo name) Real location is github.com/Molecule-AI/molecule-sdk-python (this repo). Fix all three: Homepage → github.com/Molecule-AI/molecule-sdk-python Repository → github.com/Molecule-AI/molecule-sdk-python Documentation → github.com/Molecule-AI/molecule-sdk-python#readme Side note: I scanned the rest of the org for the same hongmingw/molecule- monorepo pattern in pyproject.toml — only this package has it. No fix needed elsewhere. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ea8d472..96e3e84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,9 +29,9 @@ dependencies = [ test = ["pytest-asyncio>=0.24"] [project.urls] -Homepage = "https://github.com/hongmingw/molecule-monorepo" -Repository = "https://github.com/hongmingw/molecule-monorepo" -Documentation = "https://github.com/hongmingw/molecule-monorepo/tree/main/sdk/python" +Homepage = "https://github.com/Molecule-AI/molecule-sdk-python" +Repository = "https://github.com/Molecule-AI/molecule-sdk-python" +Documentation = "https://github.com/Molecule-AI/molecule-sdk-python#readme" [tool.setuptools.packages.find] include = ["molecule_plugin*", "molecule_agent*"]