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

import maegen
import maegen.bootstrap 

import sys, os

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

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

# run zourite
maegen.bootstrap.run()

# restore the direction
os.chdir(current)