Make release process more secure with twine

This commit is contained in:
Cameron Yick
2018-03-11 15:41:53 -04:00
parent 96c0f060a3
commit 92a6da7e2b
2 changed files with 3 additions and 2 deletions

View File

@@ -75,8 +75,8 @@ servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
release: clean ## package and upload a release
python setup.py sdist upload
python setup.py bdist_wheel upload
python setup.py sdist bdist_wheel
twine upload dist/*
dist: clean ## builds source and wheel package
python setup.py sdist

View File

@@ -11,3 +11,4 @@ PyYAML==3.12
pytest==3.4.2
pytest-runner==4.0
vcrpy==1.11.1
twine==1.10.0