diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-03-01 13:45:12 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-03-01 13:45:12 -0500 |
commit | 6bc8b9611c85d321fd4fbad012525b7cd05a66d9 (patch) | |
tree | 6f897eec0b37273152ba05fc0c8e5a45342ff6b8 /makefile | |
parent | 26ebafb3b86b224c2acad29bf4d4314a3242189a (diff) | |
download | markdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.tar.gz markdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.tar.bz2 markdown-6bc8b9611c85d321fd4fbad012525b7cd05a66d9.zip |
Switched testing to tox.
Also scrapped fabfile.py and replaced it with a much
simpler makefile. Tox does most of the stuff that was
in fabfile.py anyway.
Now that everything runs in all supported python versions
without using 2to3, we don't need to wait for tox to
support it.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..32ccd27 --- /dev/null +++ b/makefile @@ -0,0 +1,40 @@ +# Python-Markdown makefile + +install: + python setup.py install + +deploy: build + python setup.py register + python setup.py upload + +build: + python setup.py sdist --formats zip,gztar + +build-win: + python setup.py bdist_wininst + +docs: + python setup.py build_docs + +test: + tox + +update-tests: + python run-tests.py update + +clean: + rm -f MANIFEST + rm -f test-output.html + rm -f *.pyc + rm -f markdown/*.pyc + rm -f markdown/extensions/*.pyc + rm -f *.bak + rm -f markdown/*.bak + rm -f markdown/extensions/*.bak + rm -f *.swp + rm -f markdown/*.swp + rm -f markdown/extensions/*.swp + rm -rf build + rm -rf dist + rm -rf tmp + # git clean -dfx'
\ No newline at end of file |