Add configuration for uploading signed sdists and wheels

Wheels are commonly desired these days, and having them signed ought
to be done, so this adds the bits to make that possible.
This commit is contained in:
Chris Dent 2017-06-19 13:10:44 +01:00
parent 6b6acc2e53
commit 5e9e9cc991
2 changed files with 5 additions and 2 deletions

View File

@ -34,9 +34,9 @@ test:
tox --skip-missing-interpreters
dist: test
python setup.py sdist
python setup.py sdist bdist_wheel
release: clean test cleanagain tagv pypi
pypi:
python setup.py sdist upload
python setup.py sdist bdist_wheel upload --sign

View File

@ -35,3 +35,6 @@ source-dir = docs/source
[entry_points]
console_scripts =
gabbi-run = gabbi.runner:run
[bdist_wheel]
universal=1