Initiall development.

This commit is contained in:
Bradley Cornford
2017-07-18 14:05:00 +01:00
commit 53216391dc
24 changed files with 1319 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[tox]
envlist = py{27,33,34}
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
deps =
check-manifest
readme_renderer
flake8
pytest
commands =
check-manifest --ignore tox.ini,tests*
python setup.py check -m -r -s
flake8 .
py.test tests
[flake8]
exclude = .tox,*.egg,build,data
select = E,W,F