'
@echo ''
@echo 'Subcommands:'
@echo ' install Install Python-Markdown locally'
@echo ' deploy Register and upload a new release to PyPI'
@echo ' build Build a source distribution'
@echo ' build-win Build a Windows exe distribution'
@echo ' docs Build documentation'
@echo ' test Run all tests'
@echo ' update-tests Generate html files for updated text files in tests'
@echo ' clean Clean up the source directories'
.PHONY : install
install:
python setup.py 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
docs:
python setup.py build_docs --force
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
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'
Markdown-2.6.6/tests/ 0000755 0001750 0001750 00000000000 12673643763 015302 5 ustar waylan waylan 0000000 0000000 Markdown-2.6.6/tests/options/ 0000755 0001750 0001750 00000000000 12673643763 016775 5 ustar waylan waylan 0000000 0000000 Markdown-2.6.6/tests/options/html4.txt 0000644 0001750 0001750 00000000065 12670646042 020555 0 ustar waylan waylan 0000000 0000000 A test of the most
basic of html/xhtml differences. Markdown-2.6.6/tests/options/html4.html 0000644 0001750 0001750 00000000076 12670646042 020704 0 ustar waylan waylan 0000000 0000000 A test of the most
basic of html/xhtml differences.