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

import pyjama
import pyjama.bootstrap 

import sys, os

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

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

# run pyjama
pyjama.bootstrap.run()

# restore the direction
os.chdir(current)