I would like an image linked in my README.rst file to be displayed when I upload my package to PyPI. In my README I have:
.. image:: example-python.png
:height: 100px
:width: 200px
:scale: 100 %
:align: center
and in MANIFEST.in I have:
# Include the image file
include example-python.png
Right now it's not displaying in testpypi. It shows up just fine on GitHub, however. Am I doing something wrong?