#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys

if sys.hexversion < 0x020400f0:
    sys.stdout.write("%s needs a version >= 2.4 of python installed\n" % sys.argv[0])
    sys.exit(1)

try:
    from Loemu import MainWindow
except ImportError:
    from loemu.Loemu import MainWindow

w = MainWindow()
w.run()
sys.exit(0)
