Use twine for publishing Requests

This commit is contained in:
Ian Cordasco
2017-01-24 06:22:58 -06:00
parent af1b542e20
commit 4d00d47a5a
+4 -3
View File
@@ -45,9 +45,10 @@ idna:
rm -fr idna
publish:
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel --universal upload
pip install 'twine>=1.5.0'
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*
rm -fr build dist .egg requests.egg-info