[flake8]
exclude =
    .git,
    __pycache__,
    pystache/tests,
    test_pystache.py,
    build,
    dist

max-line-length = 110
max-complexity = 25
addons = file,open,basestring,xrange,unicode,long,cmp
ignore =
    E266,
    E731,
    E203,
    E221,
