#!/usr/bin/make -f

export PYBUILD_NAME=tango

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

execute_after_dh_auto_build-indep:
	dh_auto_build --buildsystem=pybuild -- -s custom --build-args="PYTHONPATH={build_dir} {interpreter} -m sphinx -N -bhtml doc build/html"

override_dh_auto_test:
	PATH="/usr/lib/tango/:$$PATH" dh_auto_test --buildsystem=pybuild -- --test-pytest
