From conversation in #19, add playbook and python linting to the CI checks. Ben suggested using tox and flake8, providing this example tox config: ```ini [tox] envlist = py27,py35,py36 [testenv] deps = flake8 command = flake8 library/ ```