#!/usr/bin/env python2.2
#
# Copyright (c) 2003 Florian Weber
# You may use and distribute this software under the terms of the
# GNU General Public License, version 2 or later
#

import sys
import os
import pygtk
pygtk.require('2.0')



prefix, t = os.path.split(os.path.split(os.path.abspath(sys.argv[0]))[0])
if t != 'bin':
	path = os.path.abspath("src")
	sys.path.insert(0, "src")




from whale import Whale


w = Whale()

