Add release to tox.ini

This commit is contained in:
Ian Cordasco 2015-01-04 14:31:19 -06:00
parent 6b27451e57
commit b4f9f8e8ae

View file

@ -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