Merge pull request #8 from davesque/twine

Use twine for pypi uploading per packaging docs
This commit is contained in:
Jason Carver
2018-06-07 12:02:28 -07:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,8 @@ release: clean
git config commit.gpgSign true
bumpversion $(bump)
git push upstream && git push upstream --tags
python setup.py sdist bdist_wheel upload
python setup.py sdist bdist_wheel
twine upload dist/*
git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"
dist: clean