#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# This file is part of the docmanager distribution.
#
# docmanager 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.
#
# docmanager 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, see <http://www.gnu.org/licenses/>.

__version__="$Revision: 43505 $"
__author__="Thomas Schraitle <thomas DOT schraitle AT suse DOT de>"
__depends__=["optparse", "lxml"]
# BEWARE: Don't rename NAME to __name__!
NAME= "docmanager"

import sys

from dm.commandline import climain
import dm.dmexceptions as dmexcept


if not hasattr(sys, "version_info") or sys.version_info < (2, 6):
    print "%s requires Python 2.6 or newer" % NAME
    sys.exit(1)


if __name__ == "__main__":
   climain()

# EOF