#!/usr/bin/python3

# XXX gruge de dev

import sys

sys.path = ["../pyPdf"] + sys.path
print "DEBUG added custom pyPdf dir in path, which is now ", sys.path

sys.path = ["src/bookletbinder/"] + sys.path

import bookletbinder

bookletbinder.main()
