summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-08-05 21:04:47 -0400
committerWaylan Limberg <waylan@gmail.com>2014-08-05 21:04:47 -0400
commit4f1a48495ebbc30ba04e924512c7adf20b81e34e (patch)
tree14addf517d37d7a061dc5bf4cd16df4f04caa873
parente020920019d607fababb0ce327ef232279c681be (diff)
downloadpython-markdown-4f1a48495ebbc30ba04e924512c7adf20b81e34e.tar.gz
Ensure MANIFEST is always included in builds. Fixes #328.
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
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