#########################################################################
# This file is part of Lyntin.
#
# Lyntin 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 3 of the License, or
# (at your option) any later version.
#
# Lyntin 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/>.
#
# copyright (c) Free Software Foundation 2001-2007
#
# $Id: __init__.py,v 1.13 2007/07/24 00:39:03 willhelm Exp $
#########################################################################
"""
Lyntin is an open-source mud client framework written in Python which allows
for additional functionality to be written in Python as Lyntin modules.
"""
__docformat__ = 'epytext en'
__version__ = '4.2'
# __version__ = 'cvs-dev'
__version_tuple__ = (4, 2, 0) # major, minor, minor minor
__author__ = 'Will Guaraldi <willhelm@users.sourceforge.net>'
__url__ = 'http://lyntin.sourceforge.net/'
__copyright__ = '(C) 2003-2007 FSF'
__license__ = 'GPLv3'
|