python轮子中DESCRIPTION.rst的内容是如何生成的?

How the contents of the DESCRIPTION.rst in python wheel are generated?

当我使用命令 python setup.py bdist_wheel 为我的 python 包生成 wheel 时,我得到一个 whl 文件 DESCRIPTION.rst,其中只有 UNKNOWN 字符串。如何填写 DESCRIPTION.rst 我想要的信息?

DESCRIPTION.rst 包含您在 setup.py 中传递给 setup()long_description 参数的任何内容。此参数旨在用于提供包的自述文件,并且大多数包将其设置为等同于 long_description=open('README.rst').read().