From 04aa7e96d64157b91b707a6d1b00029eecc93b64 Mon Sep 17 00:00:00 2001 From: Adrien Beudin Date: Tue, 19 Apr 2016 11:37:59 +0200 Subject: [PATCH] [fix] missing changelog --- MANIFEST.in | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 5a926f8..78b8d30 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ recursive-include themes * include requirements.txt +include README.md +include docs/changelog.rst diff --git a/setup.py b/setup.py index 2e3a358..e1ce098 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup(name='prosopopee', version='0.3.1', description='exposure.co clone in a static web generating tool', author='Laurent Peuch', - long_description=read_md('README.md') + "\n\n\n" + read_md('CHANGELOG.md'), + long_description=read_md('README.md') + "\n\n\n" + open('docs/changelog.rst').read(), author_email='cortex@worlddomination.be', url='https://github.com/Psycojoker/prosopopee', install_requires=open("./requirements.txt", "r").read().split(),