]> git.notmuchmail.org Git - notmuch/blobdiff - setup.py
Added tag v0.2.1 for changeset 8f496a1f9b34
[notmuch] / setup.py
index ba41de19f3f1cc03e7a5db8b8a28c1e0642bfc4e..ad411c016efb20fc1e226b9d6a35d0e2e466a789 100644 (file)
--- 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 <http://notmuchmail.org>`_ 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 <http://spaetz.bitbucket.org/>`_.
+The documentation for the latest cnotmuch release can be `viewed online <http://packages.python.org/cnotmuch>`_.
 
 The classes notmuch.Database, notmuch.Query  provide most of the core functionality, returning notmuch.Messages and notmuch.Tags.
 """,