#! /usr/bin/make -f

export PYBUILD_NAME=shopifyapi
#temp. disable build tests until pyactiveresource is available in main
export PYBUILD_DISABLE=test

pkg=python3-$PYBUILD_NAME

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

override_dh_install:
	dh_install
	# Copy the test suite to a decent location
	mkdir -p debian/${pkg}/usr/share/${pkg}
	cp -r test/ debian/${pkg}/usr/share/${pkg}

