diff options
-rw-r--r-- | makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -3,9 +3,9 @@ install: python setup.py install -deploy: build +deploy: python setup.py register - python setup.py upload + python setup.py sdist --formats zip,gztar upload build: python setup.py sdist --formats zip,gztar @@ -14,7 +14,10 @@ build-win: python setup.py bdist_wininst docs: - python setup.py build_docs + python setup.py build_docs --force + cd build/docs + zip -r ../docs.zip . + cd ../../ test: tox @@ -37,4 +40,4 @@ clean: rm -rf build rm -rf dist rm -rf tmp - # git clean -dfx'
\ No newline at end of file + # git clean -dfx' |