#!/space/truffles/1/users/rlaplant/epd/bin/python

import os
import sys 

#pyside can cause problems with old versions of enable
#however, forcing traits to use pyqt causes problems in anaconda
#os.environ['QT_API']='pyqt'

scriptdir=os.getcwd()
os.chdir(os.path.join(os.path.dirname(os.path.dirname(
    os.path.realpath(__file__))),'cvu'))
os.system('python main.py %s '%scriptdir+" ".join(sys.argv[1:]))
