X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=setup.py;h=22d44d3eb6e21eed04ad9ec47f83410263d3963d;hp=ba41de19f3f1cc03e7a5db8b8a28c1e0642bfc4e;hb=99a24452bef8d1fde2e528bed233edb79dc1c978;hpb=c3239d3eb47eeaa1ed96a3169c0effc4e68185de diff --git a/setup.py b/setup.py index ba41de19..22d44d3e 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ #!/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.