docs: point PyPI project links at the product - #10
Merged
Conversation
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 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LJJXU9zyoDSBjApcUpteDt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[project.urls]had all three entries pointing at GitHub, so pypi.org/project/wavespeed — the landing page for our most-downloaded package (~1,535/week) — offered no route to the product or the docs.Why these five labels. Checked against live PyPI pages (httpx, fastapi, pydantic) — these are the names Warehouse renders with an icon:
HomepageDocumentationRepository/SourceIssuesChangelogAnything else renders as a plain link. PyPI sorts them alphabetically, not by declaration order, so ordering here is cosmetic.
Verified: TOML parses; all four URLs return 200 (
/docsresolves to/docs/);CHANGELOG.mdis present onmain.Note: the PyPI page shows metadata from the latest release, so this only becomes visible after a
v2.0.1tag. CHANGELOG entry added accordingly.