#!/usr/bin/make -f
%:
	dh $@ --buildsystem=pybuild

override_dh_auto_clean:
	rm -rf *.egg-info .pytest_cache
	find . -iname '*.pyc' -delete
	for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done
