#!/usr/bin/make -f

export DH_VERBOSE=1
export PYBUILD_NAME=fitbitscraper

override_dh_auto_install:
	dh_auto_install
	PYTHONPATH=. http_proxy='localhost' sphinx-build -N -bhtml doc/ build/html

override_dh_auto_build:

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


