#!/usr/bin/python
original_script = 'aprcompiler.py'
import os.path
bin_dir = os.path.abspath(os.path.dirname(__file__))
fullname = os.path.join(bin_dir, original_script)
production = True
execfile(fullname)
