diff options
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | requirements.txt | 5 |
2 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..77e4fffb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +dist: xenial +language: python +cache: pip + +git: + quiet: true + +python: + - "3.6" + +script: + - find . -name \*.py -print0 | sort -z | xargs -r0 flake8 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..5ff1f952 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +entrypoints==0.3 +flake8==3.7.7 +mccabe==0.6.1 +pycodestyle==2.5.0 +pyflakes==2.1.1 |