Fix missing markdown include in manifest

Since moving from ReST to Markdown, we forgot to update the manifest to
include Markdown files.  It means that files such as README.md and
CHANGELOG.md are missing from releases.  In practice, this broke the
description on PyPI:

https://pypi.org/project/ihatemoney/6.1.3/
This commit is contained in:
Baptiste Jonglez 2023-11-23 22:58:54 +01:00
parent bb30813ec4
commit b9c3beb1dd

View file

@ -1,3 +1,3 @@
include *.rst
recursive-include ihatemoney *.rst *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.webp *.ini *.cfg *.j2 *.jpg *.gif *.ico *.xml
include LICENSE CONTRIBUTORS CHANGELOG.rst
include *.md
recursive-include ihatemoney *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.webp *.ini *.cfg *.j2 *.jpg *.gif *.ico *.xml
include LICENSE CONTRIBUTORS