#!/usr/bin/python
# Copyright (C) 2007  Lars Wirzenius <liw@iki.fi>
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


"""Publish free software projects."""


import logging
import os
import sys

import unperishlib

if os.environ.get("UNPERISH_DEBUG", None) == "yes":
    level = logging.DEBUG
else:
    level = logging.INFO
logging.basicConfig(level=level, format="%(levelname)s: %(message)s")

if "UNPERISH_PLUGINS" in os.environ:
    plugins = os.environ["UNPERISH_PLUGINS"].split(":")
else:
    plugins=None

try:
    app = unperishlib.Application(plugins=plugins)
    app.run(sys.argv[1:])
except unperishlib.UnperishException, e:
    logging.error(str(e))
    sys.exit(1)
