aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in2
-rw-r--r--makefile12
2 files changed, 11 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index e7ad4f4..95a3ce2 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -5,6 +5,8 @@ recursive-include tests *.txt *.html *.cfg *.py
include setup.py
include setup.cfg
include run-tests.py
+include tox.ini
+include makefile
include LICENSE.md
include README.md
include INSTALL.md
diff --git a/makefile b/makefile
index 93792a1..be64b06 100644
--- a/makefile
+++ b/makefile
@@ -1,30 +1,36 @@
# Python-Markdown makefile
+.PHONY : install
install:
python setup.py install
+.PHONY : deploy
deploy:
python setup.py register
python setup.py sdist --formats zip,gztar upload
+.PHONY : build
build:
python setup.py sdist --formats zip,gztar
+.PHONY : build-win
build-win:
python setup.py bdist_wininst
+.PHONY : docs
docs:
python setup.py build_docs --force
- cd build/docs
- zip -r ../docs.zip .
- cd ../../
+ cd build/docs && zip -r ../docs.zip .
+.PHONY : test
test:
tox
+.PHONY : update-tests
update-tests:
python run-tests.py update
+.PHONY : clean
clean:
rm -f MANIFEST
rm -f test-output.html