-
-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
✅ How to Show a Logo on Your PyPI Page
1. Host your logo publicly
You must use a publicly accessible image URL (e.g. from GitHub, Imgur, or a CDN).
Example using GitHub raw URL:
https://raw.githubusercontent.com/multimindlab/multimind-sdk/main/assets/logo.png
2. Update your README.md (or README.rst)
At the top of your README.md, add:
<p align="center">
<img src="https://raw.githubusercontent.com/multimindlab/multimind-sdk/main/assets/logo.png" alt="MultiMind SDK Logo" width="200"/>
</p>You can adjust the width as needed.
3. Make sure pyproject.toml or setup.py includes the README
✅ For pyproject.toml:
[project]
readme = "README.md"✅ For setup.py:
setup(
...
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
...
)4. Rebuild and Re-upload to PyPI
python -m build
twine upload dist/*🧪 Example Output on PyPI
If done correctly, your PyPI page will show the image/logo like this:
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
