为什么 setuptools 不支持 README.md?
Why doesn't setuptools support README.md?
文档说:
All projects should contain a readme file that covers the goal of the project. The most common format is reStructuredText with an “rst” extension, although this is not a requirement.
setup.py sdist
自动打包 README.rst
但不会与 README.md
一起打包。 Markdown格式有什么特别之处吗?
想达到README.rst
一样的效果,README.md
放在哪里? package_data
、data_files
或 MANIFEST.in
?
现在可以了。 version 36.4.0 中添加了支持,发布于 2017 年 9 月 3 日。
文档说:
All projects should contain a readme file that covers the goal of the project. The most common format is reStructuredText with an “rst” extension, although this is not a requirement.
setup.py sdist
自动打包 README.rst
但不会与 README.md
一起打包。 Markdown格式有什么特别之处吗?
想达到README.rst
一样的效果,README.md
放在哪里? package_data
、data_files
或 MANIFEST.in
?
现在可以了。 version 36.4.0 中添加了支持,发布于 2017 年 9 月 3 日。