From f1183d0d74646e181372f0594d27460d9a1b9f48 Mon Sep 17 00:00:00 2001 From: chengzeyi Date: Fri, 21 Aug 2026 04:54:07 +0000 Subject: [PATCH] docs: point PyPI project links at the product MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All three project URLs pointed at GitHub, so the PyPI page for the most downloaded package we publish offered no route to the product or the docs. - Homepage: the GitHub repo -> https://wavespeed.ai - Add Documentation -> https://wavespeed.ai/docs/ - Add Changelog -> CHANGELOG.md on main Repository and Issues are unchanged. These five labels are the ones PyPI renders with icons; it sorts them alphabetically, not by declaration order. Packaging metadata only — no code changes. The links reach PyPI with the next release, since the project page reflects the latest version. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01LJJXU9zyoDSBjApcUpteDt --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a3f95d..29b0cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project are documented here. Versions are derived from Git tags via `setuptools_scm` — see [VERSIONING.md](VERSIONING.md). +## 2.0.1 + +### Changed + +- PyPI project links now point at the product rather than only at the repository. `Homepage` is + `https://wavespeed.ai` (it was the GitHub repo), and `Documentation` and `Changelog` entries were + added. No code changes — packaging metadata only. + ## 2.0.0 ### Removed — BREAKING diff --git a/pyproject.toml b/pyproject.toml index 6bf4784..e3800a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,9 +30,11 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/WaveSpeedAI/wavespeed-python" +Homepage = "https://wavespeed.ai" +Documentation = "https://wavespeed.ai/docs/" Repository = "https://github.com/WaveSpeedAI/wavespeed-python" Issues = "https://github.com/WaveSpeedAI/wavespeed-python/issues" +Changelog = "https://github.com/WaveSpeedAI/wavespeed-python/blob/main/CHANGELOG.md" [project.optional-dependencies] test = ["pytest"]