这就是我的 setup.py 的样子:
from distutils.core import setup
setup(
author='...',
description='...',
download_url='...',
license='...',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
name='...',
packages=['...'],
url='...',
version='...'
)
然后,我可以毫无错误地运行python setup.py sdist
。但是,如果我用麻线 ( ) 检查包裹twine check dist/*
,我会收到以下警告:
`long_description` has syntax errors in markup and would not be rendered on PyPI.
warning: `long_description_content_type` missing. defaulting to `text/x-rst`.
我所有的包都是最新的,我没有重复或多行属性。是什么原因造成的,我该如何解决?