#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
# Copyright (c) 2004, 2005, 2006, 2007 Tom Hinkle
# You may use and distribute this software under the terms of the
# GNU General Public License, version 2 or later

import sys

# The following line is modified at installation time by setup.py so it
# points to the actual modules installation path.
lib_dir = '.'

if lib_dir not in sys.path:
    sys.path.insert(0, lib_dir)

from gourmet import GourmetRecipeManager
GourmetRecipeManager.startGUI()

