summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 9 insertions, 1 deletions
diff --git a/README b/README
index d5c925d..ea9d942 100644
--- a/README
+++ b/README
@@ -21,4 +21,12 @@ Python
The Python tests require Python 2.6.
Run the tests by typing:
-python mimeparse_test.py \ No newline at end of file
+python mimeparse_test.py
+
+Make sure the package conforms to the PEP8 style guide:
+pep8 --statistics --show-source --ignore=E501 --exclude=venv .
+
+Check the code for simple warnings and errors:
+pyflakes mimeparse.py mimeparse_test.py setup.py
+
+You may need to install pep8 and pyflakes via pip to run these 2 tests.