X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=setup.py;h=ad411c016efb20fc1e226b9d6a35d0e2e466a789;hp=ba41de19f3f1cc03e7a5db8b8a28c1e0642bfc4e;hb=ffe8c46f857ec0ad1cde087686f5fe53a789657d;hpb=c3239d3eb47eeaa1ed96a3169c0effc4e68185de diff --git a/setup.py b/setup.py index ba41de19..ad411c01 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,19 @@ #!/usr/bin/env python from distutils.core import setup - +from cnotmuch.notmuch import __VERSION__ setup(name='cnotmuch', - version='0.1', - description='Python binding og the notmuch mail search and indexing library.', + version=__VERSION__, + description='Python binding of the notmuch mail search and indexing library.', author='Sebastian Spaeth', author_email='Sebastian@SSpaeth.de', url='http://bitbucket.org/spaetz/cnotmuch/', - download_url='http://bitbucket.org/spaetz/cnotmuch/get/v0.1.tar.gz', + download_url='http://bitbucket.org/spaetz/cnotmuch/get/v'+__VERSION__+'.tar.gz', packages=['cnotmuch'], keywords = ["library", "email"], long_description="""The cnotmuch module provides an interface to the `notmuch `_ functionality, directly interfacing with a shared notmuch library. Notmuch provides a maildatabase that allows for extremely quick searching and filtering of your email according to various criteria. -The documentation for the latest cnotmuch release can be `viewed online `_. +The documentation for the latest cnotmuch release can be `viewed online `_. The classes notmuch.Database, notmuch.Query provide most of the core functionality, returning notmuch.Messages and notmuch.Tags. """,