2010-12-22 12:35:41 +01:00
|
|
|
__all__ = ['OfflineImap']
|
|
|
|
|
|
|
|
__productname__ = 'OfflineIMAP'
|
2016-03-10 17:08:18 +01:00
|
|
|
# Expecting trailing "-rcN" or "" for stable releases.
|
2020-08-29 20:04:40 +02:00
|
|
|
__version__ = "7.3.0"
|
|
|
|
__copyright__ = "Copyright 2002-2019 John Goerzen & contributors"
|
|
|
|
__author__ = "John Goerzen"
|
|
|
|
__author_email__ = "offlineimap-project@lists.alioth.debian.org"
|
2010-12-22 12:35:41 +01:00
|
|
|
__description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
|
2020-08-29 20:04:40 +02:00
|
|
|
__license__ = "Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)"
|
2016-02-22 12:14:49 +01:00
|
|
|
__bigcopyright__ = """%(__productname__)s %(__version__)s
|
2011-10-26 16:47:21 +02:00
|
|
|
%(__license__)s""" % locals()
|
2016-02-19 12:10:23 +01:00
|
|
|
__homepage__ = "http://www.offlineimap.org"
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2011-07-01 13:15:06 +02:00
|
|
|
banner = __bigcopyright__
|
2002-06-21 08:51:21 +02:00
|
|
|
|
2011-05-04 16:45:24 +02:00
|
|
|
from offlineimap.error import OfflineImapError
|
2013-07-21 21:00:23 +02:00
|
|
|
# put this last, so we don't run into circular dependencies using
|
2010-12-22 12:35:41 +01:00
|
|
|
# e.g. offlineimap.__version__.
|
|
|
|
from offlineimap.init import OfflineImap
|