#!/usr/bin/make -f

export PYBUILD_NAME=piexif

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

override_dh_auto_clean:
	rm -rf piexif.egg-info
	python setup.py clean -a
	python3 setup.py clean -a
	find . -name \*.pyc -exec rm {} \;
