From 3281e755c30ed8f621e75bfed9d872e6bb28c47d Mon Sep 17 00:00:00 2001 From: 0livd <0livd@users.noreply.github.com> Date: Fri, 23 Jun 2017 19:45:35 +0200 Subject: [PATCH 1/2] Include the wsgi files in the source distribution #218 moved the wsgi file to the budget dir but it was still not distributed because *.wsgi was not stated in the manifest file --- CHANGELOG.rst | 3 ++- MANIFEST.in | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fa0724d4..ee024135 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,8 +6,9 @@ This document describes changes between each past release. 1.1 (unreleased) ---------------- -- Nothing changed yet. +### Fixed +- Add *.wsgi in the manifest file (#237) 1.0 (2017-06-20) ---------------- diff --git a/MANIFEST.in b/MANIFEST.in index ba99e2a7..3e32f238 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include *.rst -recursive-include budget *.rst *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.ini *.cfg +recursive-include budget *.rst *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.ini *.cfg *.wsgi include LICENSE CONTRIBUTORS CHANGELOG.rst From 3316d9a15cd7aa03d76b19771b577cfeef50456b Mon Sep 17 00:00:00 2001 From: 0livd <0livd@users.noreply.github.com> Date: Fri, 23 Jun 2017 19:48:03 +0200 Subject: [PATCH 2/2] Remove package_data from setup script Doesn't bring anything as these infos are already in the manifest file --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 2aed3bd9..c70a31d2 100644 --- a/setup.py +++ b/setup.py @@ -59,9 +59,6 @@ setup(name='ihatemoney', author_email='alexis@notmyidea.org', url='https://github.com/spiral-project/ihatemoney', packages=find_packages(), - package_data={'': ['*.rst', '*.py', '*.yaml', '*.po', '*.mo', '*.html', - '*.css', '*.js', '*.eot', '*.svg', '*.woff', '*.txt', - '*.png', '*.ini', '*.cfg']}, include_package_data=True, zip_safe=False, install_requires=REQUIREMENTS,