#!/usr/bin/python

# Version string
FUGU_VERSION = '1.1.8'
FUGU_VERSION_LONG = 'Fugu/' + FUGU_VERSION

# Add Fugu lib directories to sys.path before importing our modules
import sys
sys.path.insert(1, '/afs/sipb/project/gale/lib/fugu-%s' % FUGU_VERSION)
sys.path.insert(1, '/afs/sipb/project/gale/lib/fugu-%s' % FUGU_VERSION)

import string, os
import pygalesetup

if __name__ == '__main__':
	try:
		pygalesetup.config()
	except KeyboardInterrupt:
		print 'PyGale configuration interrupted'
