Add flake8 instructions to README.md

Also add flake8 to requirements.txt so that it will be installed by:

    pip install -r requirements.txt
This commit is contained in:
Joseph Frazier
2016-10-06 15:37:12 -04:00
parent f0b9c7cb67
commit dda9d55989
3 changed files with 7 additions and 1 deletions
+6
View File
@@ -370,6 +370,12 @@ pip install -r requirements.txt
python setup.py develop
```
Run code style checks:
```bash
flake8
```
Run unit tests:
```bash