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] 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