#!/usr/bin/make -f

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

override_dh_auto_clean:
	dh_auto_clean
	make -C docs clean

override_dh_auto_build:
	dh_auto_build
	make -C docs html man

override_dh_install:
	dh_install --fail-missing

# Disable test due to missing python-httpretty in wheezy
override_dh_auto_test:
