#!/usr/bin/make -f

export PYBUILD_NAME=foo

%:
	dh $@

override_dh_auto_build:
	../../pybuild --build --verbose
	../../pybuild --build --verbose

override_dh_auto_install:
	../../pybuild --install
	../../pybuild --install

override_dh_auto_test:
	../../pybuild --test --test-pytest

override_dh_auto_clean:
	../../pybuild --clean --verbose
	rm -rf .pybuild

override_dh_installinit:
	DH_VERBOSE=1 ../../dh_python3
	dh_installinit

override_dh_python3:
	# ignore any system dh_python3
