VirtualMailManager/constants/version.py
author Pascal Volk <neverseen@users.sourceforge.net>
Fri, 26 Feb 2010 02:35:25 +0000
branchv0.6.x
changeset 216 0c8c053b451c
parent 215 33f727efa7c4
permissions -rw-r--r--
Moved VirtualMailManager/Exceptions to VirtualMailManager/errors. Renamed VMM*Exception classes to *Error. No longer add the attribute 'message' to VMMError if it doesn't exist, like in Python 2.4. It has been deprecated as of Python 2.6. Also removed the methods code() and msg(), the values are now accessible via the attributes 'code' and 'msg'.

# -*- coding: UTF-8 -*-
# Copyright (c) 2007 - 2010, Pascal Volk
# See COPYING for distribution information.

"""
    VirtualMailManager.constants.version

    VirtualMailManager's versions information.
"""

__all__ = ['__author__', '__date__', '__version__']
AUTHOR = 'Pascal Volk <neverseen@users.sourceforge.net>'
RELDATE = '2009-09-09'
VERSION = '0.5.2'
__author__ = AUTHOR
__date__ = RELDATE
__version__ = VERSION