Add machinery to create/upload releases

This uses twine to upload wheels and source distributions that we create
for httpbin.
This commit is contained in:
Ian Cordasco
2016-01-27 10:33:55 -06:00
parent 5433f799e8
commit dc7e81c4a1
+11
View File
@@ -1,4 +1,15 @@
[tox]
envlist = py27,py34
[testenv]
commands=python test_httpbin.py
[testenv:release]
skipdist = true
usedevelop = false
deps =
twine>=1.6.0
wheel
commands =
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*