#!/usr/bin/make -f

export PYBUILD_NAME = pymbar

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

override_dh_auto_test:
	dh_auto_test -- --test-pytest

override_dh_auto_install:
	dh_auto_install
	rm -r debian/python3-$(PYBUILD_NAME)/usr/pymbar

override_dh_auto_clean:
	dh_auto_clean
	rm -rf pymbar.egg-info
