Switch `make publish` to use twine and sign the uploaded files

This commit is contained in:
Matt Robenolt 2015-07-06 21:14:35 -04:00
parent 6d94eab2c5
commit 6850500189
1 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,8 @@ setup-git:
cd .git/hooks && ln -sf ../../hooks/* ./
publish:
python setup.py sdist bdist_wheel upload
rm -rf dist
python setup.py sdist bdist_wheel
twine upload -s dist/*
.PHONY: bootstrap test lint coverage setup-git publish