X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2F__init__.py;h=a7b558fa746a01b9716689ffa375c44d5640af87;hb=09c0804c2d2e3eb52b4ee90e134a636f38bcb98b;hp=5ba1337f2ab43b3c36e682686febc2361fe35440;hpb=35042e0696dd79c6a008918247d52c06ac9a6365;p=notmuch diff --git a/bindings/python/notmuch/__init__.py b/bindings/python/notmuch/__init__.py index 5ba1337f..a7b558fa 100644 --- a/bindings/python/notmuch/__init__.py +++ b/bindings/python/notmuch/__init__.py @@ -1,9 +1,10 @@ -"""The :mod:`notmuch` module provides most of the functionality that a user is likely to need. +"""The :mod:`notmuch` module provides most of the functionality that a user is +likely to need. .. note:: The underlying notmuch library is build on a hierarchical memory allocator called talloc. All objects derive from a top-level :class:`Database` object. - + This means that as soon as an object is deleted, all underlying derived objects such as Queries, Messages, Message, and Tags will be freed by the underlying library as well. Accessing these @@ -56,6 +57,6 @@ from notmuch.message import Messages, Message from notmuch.thread import Threads, Thread from notmuch.tag import Tags from notmuch.globals import nmlib, STATUS, NotmuchError -__LICENSE__="GPL v3+" -__VERSION__='0.2.2' -__AUTHOR__ ='Sebastian Spaeth ' +from notmuch.version import __VERSION__ +__LICENSE__ = "GPL v3+" +__AUTHOR__ = 'Sebastian Spaeth '