#!/usr/bin/make -f
# -*- makefile -*-
clean:
# Deleting the upstream setup.py, because it is windows only, 
# and breaks the build
	rm -f setup.py

override_dh_auto_install:
	install -m 755 debian/pype.sh debian/pype/usr/bin/pype

override_dh_installchangelogs:
	dh_installchangelogs changelog.txt

%:
	dh $@
