#!python

import os
import sys
import PyMca5
from PyMca5.PyMcaGui import PeakIdentifier

fname = os.path.join(os.path.dirname(PeakIdentifier.__file__), 'PeakIdentifier.py')
if sys.version < '3.0':
    execfile(fname)
else:
    exec(compile(open(fname).read(), fname, 'exec'))
