chore(pyproject): fill in PyPI metadata#40
Merged
Conversation
9bd0e69 to
21f2584
Compare
…s, urls)
The published package on PyPI lacks license declaration, authors,
classifiers, and project URLs — making the listing sparse and
preventing PyPI search/filter from matching the package by Python
version, license, or topic.
Add the standard metadata fields:
- license = LICENSE file (MIT, already in repo)
- authors = DIDWW <support@didww.com>
- keywords for PyPI search
- 14 classifiers (Development Status, Audience, License, OS,
supported Python 3.9-3.13, Topic: Telephony / WWW HTTP / Libraries)
- [project.urls] Homepage / Repository / Issues / Documentation
No code changes; the build artifact is unaffected by metadata content
(twine check still passes).
21f2584 to
85f9e05
Compare
|
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.



Summary
The published package on PyPI lacks standard metadata, making the listing sparse and breaking PyPI search/filter:
licensedeclaration (LICENSE file exists in repo but isn't referenced)authorsclassifiers— PyPI cannot filter by Python version, license, or topic[project.urls]— Homepage / Repository / Issues / Documentation links missingChanges
pyproject.tomlgains:license = { file = "LICENSE" }(MIT)authors = [{ name = "DIDWW", email = "support@didww.com" }]keywordsfor PyPI searchclassifiers(Development Status, Intended Audience, License, OS, Python 3.9-3.13, Topic)[project.urls]with Homepage / Repository / Issues / DocumentationNo code changes. The build artifact (sdist/wheel content) is unaffected — only the PyPI metadata gets richer.
Test plan
pytest tests/ -q→ 291 passedtomllib.loads(open('pyproject.toml').read())parses cleanlytwine upload(post-merge)