#!/usr/bin/env python
#
# Copyright 2010 Mike Wakerly <opensource@hoho.com>
#
# This file is part of the Pykeg package of the Kegbot project.
# For more information on Pykeg or Kegbot, see http://kegbot.org/
#
# Pykeg 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.
#
# Pykeg 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 Pykeg.  If not, see <http://www.gnu.org/licenses/>.

import os
import sys
from django.core import management

if sys.version_info < (2, 7):
  sys.stderr.write('Error: Kegbot needs Python 2.7 or newer.\n\n'
      'Current version: %s\n' % sys.version)
  sys.exit(1)

if __name__ == "__main__":
  os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pykeg.settings")
  management.execute_from_command_line()
