#!/usr/bin/make -f

# DH_VERBOSE := 1

export PYBUILD_NAME=nanomath

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

override_dh_install:
	dh_install
	find debian -name LICENSE -type f -delete

override_dh_auto_clean:
	dh_auto_clean
	rm -f nanomath.egg-info/SOURCES.txt nanomath.egg-info/requires.txt
