#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

override_dh_auto_clean:
	rm -rf smstrade.egg-info
	dh_auto_clean

override_dh_auto_test:
	py.test

override_dh_installchangelogs:
	dh_installchangelogs -i ChangeLog.rst

%:
	dh $@ --with=python2 --buildsystem=python_distutils

