setup.py: put every supported runtime in the PyPI keywords - #5140
Merged
Conversation
✅ Drift Bot (ClawMetry): no drift detectedDrift Bot analyzed the changed files against this project's blueprints and requirements and found no drift. |
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.
Why
Chasing down why the internet still calls this "ClawMetry for OpenClaw", the PyPI keywords turned out to be one of the upstream sources feeding it:
Of 26 supported runtimes, the keywords named exactly two, and one of them is OpenClaw. The
descriptionfield is already generated fromruntime_count, so it self-heals on every release, butkeywordsis a hardcoded string and has not moved.That matters because PyPI keywords drive PyPI's own search, and they get ingested by the package aggregators that then reprint our positioning. A developer searching PyPI for
claude-code observabilityorcursor monitoringdoes not find us today.What
Rewrites
keywordsto cover all 26 runtimes plus the category terms, as a wrapped tuple so it stays readable and diffs cleanly when a runtime is added.No behaviour change, packaging metadata only.
Verify after release
Related
Part of a sweep correcting OpenClaw-only framing on external surfaces. Also filed psincraian/pepy#791 (pepy is serving our May summary and version) and stritti/clawmetry-docker#41 (third-party Docker image README).