#!/usr/bin/python
#THIS IS ZOURITE LAUNCH SCRIPT

import zourite
import zourite.bootstrap 

import os

# backup the current dir
current = os.getcwdu()

# change to zourite package dir
os.chdir(zourite.__path__[0])

# run zourite
zourite.bootstrap.runGui()

# restore the direction
os.chdir(current)