def get_long_description():
"""Reads the long description from the README"""
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except Exception as ex:
print("Unable to convert README to RST: '{}'".format(ex))
return ""
评论列表
文章目录