Skip to content

Commit

Permalink
Add changelog to long description in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
espdev committed Jan 11, 2020
1 parent 64b638f commit 16d5359
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ def _get_version():

def _get_long_description():
readme = ROOT_DIR / 'README.md'
return readme.read_text(encoding='utf-8')
changelog = ROOT_DIR / 'CHANGELOG.md'
return '{}\n{}'.format(
readme.read_text(encoding='utf-8'),
changelog.read_text(encoding='utf-8')
)


setup(
Expand Down

0 comments on commit 16d5359

Please sign in to comment.