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
commit af727b97f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

View File

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