diff --git a/tox.ini b/tox.ini index fe5b375..2170c62 100644 --- a/tox.ini +++ b/tox.ini @@ -22,6 +22,15 @@ deps = flake8 commands = flake8 {posargs} flake8/ +[testenv:release] +basepython = python2.7 +deps = + twine >= 1.4.0 + wheel +commands = + python setup.py sdist bdist_wheel + twine upload {posargs} dist/* + [flake8] select = E,F,W max_line_length = 79