#!python
#THIS IS PYJAMA LAUNCH SCRIPT

import ${NAME}
import ${NAME}.bootstrap 

import sys, os

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

# change to ${NAME} package dir
os.chdir(${NAME}.__path__[0])

# run ${NAME}
${NAME}.bootstrap.run()

# restore the direction
os.chdir(current)