multimind-sdk icon indicating copy to clipboard operation
multimind-sdk copied to clipboard

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

Open DarshanKumar89 opened this issue 8 months ago โ€ข 0 comments

โœ… 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

DarshanKumar89 avatar Jun 29 '25 20:06 DarshanKumar89