#!/usr/bin/make -f

DH_ALWAYS_EXCLUDE = .git:.gitignore

export DH_VERBOSE=1

DH := dh --with=environment \
	 --no-start \
	 --no-restart \
	 --fail-missing \
	 --without=python-central,python-support,python2,python3 \

%:
	$(DH) $@


override_dh_auto_build:
	fab venv:mode=release

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build/
	rm -rf *.egg-info/
