#!@PYTHON@ # Version string FUGU_VERSION = '@FUGUVERSION@' FUGU_VERSION_LONG = 'Fugu/' + FUGU_VERSION # Add Fugu lib directories to sys.path before importing our modules import sys sys.path.insert(1, '@prefix@/lib/fugu-%s' % FUGU_VERSION) sys.path.insert(1, '@exec_prefix@/lib/fugu-%s' % FUGU_VERSION) import string, os import pygalesetup if __name__ == '__main__': try: pygalesetup.config() except KeyboardInterrupt: print 'PyGale configuration interrupted'