#!/usr/bin/make -f

export PYBUILD_NAME = acme

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

override_dh_auto_install:
	dh_auto_install
	find $(CURDIR)/debian/ -type d -name testdata -print0 | xargs -0 rm -rf '{}' \;

override_dh_auto_test:
	:
