#!/usr/bin/make -f
#DH_VERBOSE = 1

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

export PYBUILD_NAME = pytiger
export PYBUILD_TEST_NOSE = 1

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

override_dh_auto_build:
	dh_auto_build
	python3 setup.py build_sphinx

override_dh_auto_clean:
	dh_auto_clean
	rm -rf src/pytiger.egg-info
