Add changelog to description

This commit is contained in:
Jason Paryani
2015-03-05 12:51:56 -08:00
parent a901b358ca
commit 95d1ce5903

View File

@@ -45,6 +45,9 @@ write_version_py()
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
changelog = pypandoc.convert('CHANGELOG.md', 'rst')
changelog = '\nChangelog\n=============\n' + changelog
long_description += changelog
except (IOError, ImportError):
long_description = ''