Skip to content

Commit

Permalink
fix: issue with the history.md file not included in MANIFEST.in file
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinit Kumar committed Apr 20, 2022
1 parent 4f0f63f commit 1e4d05c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include README.md
include History.md
recursive-include cmsplugin_gallery/locale *
recursive-include cmsplugin_gallery/templates *
recursive-include *.md
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
with open("README.md") as readme_file:
readme = readme_file.read()

with open("History.md") as history_file:
history = history_file.read()

from cmsplugin_gallery import __version__

setup(
Expand All @@ -43,7 +46,7 @@
description = 'DjangoCMS image gallery plugin with drag&drop '
'reordering in admin, support for thumbnails and '
'jQueryTOOLS overlay.',
long_description=readme + "\n\n",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
packages=find_packages(),
provides=['cmsplugin_gallery', ],
Expand Down

0 comments on commit 1e4d05c

Please sign in to comment.