README: typos
[diaspy.git] / Makefile
index e9a501a0167c0f196b42aa84c1c8e03982a5c183..e30d53c8e00800e81f7999fa4d3118a3c66f32cf 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,19 @@
 .PHONY: style-check test
 
 style-check:
-       flake8 ./diaspy/
+       flake8 --max-complexity 6 ./diaspy/
 
 test:
        python3 -m unittest --verbose --catch --failfast tests.py
+
+test-python2:
+       python2 -m unittest --verbose --catch --failfast tests
+
+clean:
+       rm -v ./{diaspy/,}*.pyc
+       rm -rv ./{diaspy/,}__pycache__/
+
+install:
+       python setup.py install
+       rm -rvf dist/
+       rm -rvf diaspy.egg-info