当我将包上传到PyPI时,我想在我的README.rst文件中链接一个图像。在我的自述文件中,我有:
.. image:: example-python.png
:height: 100px
:width: 200px
:scale: 100 %
:align: center
在MANIFEST.in我有:
# Include the image file
include example-python.png
现在它没有显示在testpypi中。然而,它在GitHub上显示得很好。我做错了吗?
答案 0 :(得分:2)
在.. image:: example-python.png
中,您使用相对URL,即浏览器希望该图像与包在同一目录中。我怀疑可以在PyPI上传图像。将其上传到某处并将URL更改为绝对URL。我认为已经在Github上的图片了。
include
指令不起作用,因为它将图像包含在源(sdist)存档中,浏览器永远不会查找它。