#!/usr/bin/python2
"""
Pympc is a client for Music Player Daemon.
Copyright (C) 2004  Magnus Bjernstad <bjernstad@gmail.com>

This file is part of Pympc.

Pympc is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

Pympc is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Pympc; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
"""
try:
    import psyco
    psyco.full()
except ImportError:
    pass

import sys

try:
    import gtk
except ImportError:
    sys.stderr.write('Could not import module gtk. Make sure pygtk is correctly installed.\n')
    sys.exit(1)

if gtk.gtk_version < (2, 6, 0):
    sys.stderr.write('Gtk+ version too old. Version >= 2.6.0 is required.\n')
    sys.exit(1)
if gtk.pygtk_version < (2, 6, 1):
    sys.stderr.write('Pygtk version too old. Version >= 2.6.0 is required.\n')
    sys.exit(1)

try:
    # If properly installed via python setup.py install
    import pympc.pympc
    app = pympc.pympc.Pympc()
except:
    # If NOT installed via python setup.py install.
    import pympc
    app = pympc.Pympc()
app.start()
