From b4f9f8e8ae853984102969cf39868eb2697457c9 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 4 Jan 2015 14:31:19 -0600 Subject: [PATCH] Add release to tox.ini --- tox.ini | 9 +++++++++ 1 file changed, 9 insertions(+) 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