From c867bd570caaf4264fa7497860eed4202c71fb4d Mon Sep 17 00:00:00 2001 From: Bernt Popp Date: Tue, 14 Jul 2026 10:28:09 +0200 Subject: [PATCH] fix(packaging): point project URLs at the real repository pyproject declared Homepage/Repository/Bug Tracker under a GitHub org that does not exist, so every link on a future PyPI page would 404. Point them at berntpopp/stringdb-link, the actual repository. Also drops the Documentation URL where it named a readthedocs site that was never published (both return 404). Found by the 2026-07-14 fleet findability audit. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01DcjYudfsCQ3YGbPZSfs8s6 --- pyproject.toml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ebabca2..30f7f2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,12 +61,10 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/stringdb-link/stringdb-link" -Documentation = "https://stringdb-link.readthedocs.io" -Repository = "https://github.com/stringdb-link/stringdb-link" -"Bug Tracker" = "https://github.com/stringdb-link/stringdb-link/issues" -Changelog = "https://github.com/stringdb-link/stringdb-link/blob/main/CHANGELOG.md" - +Homepage = "https://github.com/berntpopp/stringdb-link" +Repository = "https://github.com/berntpopp/stringdb-link" +"Bug Tracker" = "https://github.com/berntpopp/stringdb-link/issues" +Changelog = "https://github.com/berntpopp/stringdb-link/blob/main/CHANGELOG.md" [project.scripts] stringdb-link = "stringdb_link.cli:main" stringdb-mcp = "mcp_server:main"