thomas@78: # Copyright (C) 2007 by Intevation GmbH
thomas@78: # Authors:
thomas@78: # Bernhard Herzog <bh@intevation.de>
thomas@78: #
thomas@78: # This program is free software under the GPL (>=v2)
thomas@78: # Read the file COPYING coming with the software for details.
thomas@78: 
thomas@78: """Initializes the Python interpreter for the treepkg frontends"""
thomas@78: 
thomas@78: import sys
thomas@78: import os
thomas@78: 
thomas@78: # make sure we can import treepkg.  The topdir variable may be
thomas@78: # referenced by users of this module.
thomas@78: topdir=os.path.join(os.path.dirname(__file__), os.pardir)
thomas@78: sys.path.insert(0, topdir)