#!/usr/bin/make -f

export PYBUILD_NAME=crossrefapi

# These values will intentionally fail with
# 'requests.exceptions.InvalidURL: Proxy URL had no scheme'
# in order not to make any network requests during tests

export http_proxy=127.0.0.1
export https_proxy=127.0.0.1

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

override_dh_auto_clean:
	dh_auto_clean
	rm -rf crossrefapi.egg-info
