#!/usr/bin/make -f

PACKAGE_NAME := $(shell python setup.py --name)
export PYBUILD_NAME=$(PACKAGE_NAME)
# Don't run tests for vatnumber, test_vies tries to connect to the network
export PYBUILD_DISABLE_python2.7=test
export PYBUILD_DISABLE_python3.4=test

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


