Clean up Makefile [ci skip]

- Rename sdistup, sdisttest -> upload, upload-test to better reflect what target does; keep target name short; add targets to help
This commit is contained in:
Alex Clark 2015-06-07 09:54:02 -04:00
parent 0706f6b504
commit 91d5da745f

View File

@ -11,6 +11,8 @@ help:
@echo " docs make html docs"
@echo " docserver run an http server on the docs directory"
@echo " install-req install documentation and test dependencies"
@echo " upload upload sdists to PyPI"
@echo " upload-test upload sdists to test.pythonpackages.com"
pre:
virtualenv .
@ -67,9 +69,9 @@ docserver:
# password:
# repository = http://test.pythonpackages.com
#
sdisttest:
upload-test:
python setup.py sdist --format=gztar,zip upload -r test
sdistup:
upload:
python setup.py sdist --format=gztar,zip upload
sdist:
python setup.py sdist --format=gztar,zip