offlineimap/offlineimap/__init__.py

22 lines
893 B
Python
Raw Normal View History

__all__ = ['OfflineImap']
__productname__ = 'OfflineIMAP'
__version__ = "6.7.0"
__revision__ = "-rc1" # Expecting "-rcN" or "" for stable releases.
__bigversion__ = __version__ + __revision__
__copyright__ = "Copyright 2002-2015 John Goerzen & contributors"
__author__ = "John Goerzen"
__author_email__= "offlineimap-project@lists.alioth.debian.org"
__description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
__license__ = "Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)"
__bigcopyright__ = """%(__productname__)s %(__bigversion__)s
%(__license__)s""" % locals()
__homepage__ = "http://offlineimap.org"
banner = __bigcopyright__
2002-06-21 08:51:21 +02:00
from offlineimap.error import OfflineImapError
# put this last, so we don't run into circular dependencies using
# e.g. offlineimap.__version__.
from offlineimap.init import OfflineImap