Use twine for pypi uploading per packaging docs

See here:
https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives
This commit is contained in:
David Sanders 2018-06-06 19:35:31 -06:00
parent 83ce66097c
commit 016f48d17d
No known key found for this signature in database
GPG Key ID: 87A8D53EF6038397
2 changed files with 3 additions and 1 deletions

View File

@ -51,7 +51,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

View File

@ -23,6 +23,7 @@ extras_require = {
"bumpversion>=0.5.3,<1",
"pytest-watch>=4.1.0,<5",
"wheel",
"twine",
"ipython",
],
}