__init__.py 834 B

1234567891011121314151617181920
  1. __all__ = ['OfflineImap']
  2. __productname__ = 'OfflineIMAP'
  3. # Expecting trailing "-rcN" or "" for stable releases.
  4. __version__ = "7.0.14"
  5. __copyright__ = "Copyright 2002-2017 John Goerzen & contributors"
  6. __author__ = "John Goerzen"
  7. __author_email__= "offlineimap-project@lists.alioth.debian.org"
  8. __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
  9. __license__ = "Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)"
  10. __bigcopyright__ = """%(__productname__)s %(__version__)s
  11. %(__license__)s""" % locals()
  12. __homepage__ = "http://www.offlineimap.org"
  13. banner = __bigcopyright__
  14. from offlineimap.error import OfflineImapError
  15. # put this last, so we don't run into circular dependencies using
  16. # e.g. offlineimap.__version__.
  17. from offlineimap.init import OfflineImap