From 4f1a48495ebbc30ba04e924512c7adf20b81e34e Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Tue, 5 Aug 2014 21:04:47 -0400 Subject: Ensure MANIFEST is always included in builds. Fixes #328. --- makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makefile b/makefile index be64b06..411aa8d 100644 --- a/makefile +++ b/makefile @@ -7,14 +7,17 @@ install: .PHONY : deploy deploy: python setup.py register + python setup.py sdist --manifest-only python setup.py sdist --formats zip,gztar upload .PHONY : build build: + python setup.py sdist --manifest-only python setup.py sdist --formats zip,gztar .PHONY : build-win build-win: + python setup.py sdist --manifest-only python setup.py bdist_wininst .PHONY : docs -- cgit v1.2.3