#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	dh_testdir
	python setup.py build

override_dh_auto_install:
	python setup.py install \
		--root debian/grid-updates \
		--no-compile \
		--install-layout=deb

override_dh_auto_clean:
	python setup.py clean -a
	find . -name '*\.py[co]' -exec rm -f {} \;
