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

import caritang
import caritang.bootstrap 

import sys, os

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

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

# run zourite
caritang.bootstrap.run(sys.argv)

# restore the direction
os.chdir(current)