Skip to content

[ISSUE] Logo on Your PyPI Page is broken and not updated properly #30

@DarshanKumar89

Description

@DarshanKumar89

✅ 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:

MultiMind Logo Render Example

Metadata

Metadata

Labels

documentationImprovements or additions to documentationenhancementNew feature or requestquestionFurther information is requested

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions