#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

override_dh_builddeb:
	dh_builddeb -- -Zgzip

override_dh_clean:
	dh_clean
	rm -rf pingunoque.egg-info/
	rm -rf __pycache__/

override_dh_usrlocal:
	:

%:
	dh $@ --with=python2 --buildsystem=pybuild
