#!/usr/bin/make -f

export PYBUILD_NAME=pypi-package-updater
# Use the upstream version (no Debian -1 suffix) for the Python version string:
export SETUPTOOLS_SCM_PRETEND_VERSION := $(DEB_UPSTREAM_VERSION)

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

# Skip tests during package build since test dependencies aren't in Build-Depends
override_dh_auto_test:

override_dh_auto_clean:
	# Avoid setuptools' 'clean' which triggers setup_requires resolution
	rm -rf .eggs *.egg-info build dist || true