# Disable the following PyLint messages: # R0903 - Not enough public methods # W0142 - Used * or ** magic # W0232 - Class has no __init__ method DISABLE="R0903,W0142,W0232" pep8 : pep8.py --filename=*.py --repeat . pylint : @find -name "*.py" > check-pylint @echo "Running PyLint on "`wc -l < check-pylint`" files..." @xargs -a check-pylint pylint \ --rcfile=pylintrc --disable-msg=$(DISABLE) install : python setup.py install clean : rm -rf build dist *.ppm *.pbm *.png check-*