]> git.notmuchmail.org Git - notmuch/blob - setup.py
README: update changelog
[notmuch] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 from cnotmuch.notmuch import __VERSION__
5 setup(name='cnotmuch',
6       version=__VERSION__,
7       description='Python binding of the notmuch mail search and indexing library.',
8       author='Sebastian Spaeth',
9       author_email='Sebastian@SSpaeth.de',
10       url='http://bitbucket.org/spaetz/cnotmuch/',
11       download_url='http://bitbucket.org/spaetz/cnotmuch/get/v'+__VERSION__+'.tar.gz',
12       packages=['cnotmuch'],
13       keywords = ["library", "email"],
14       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.
15
16 The documentation for the latest cnotmuch release can be `viewed online <http://spaetz.bitbucket.org/>`_.
17
18 The classes notmuch.Database, notmuch.Query  provide most of the core functionality, returning notmuch.Messages and notmuch.Tags.
19 """,
20       classifiers=['Development Status :: 2 - Pre-Alpha',
21                    'Intended Audience :: Developers',
22                    'License :: OSI Approved :: GNU General Public License (GPL)',
23                    'Programming Language :: Python :: 2',
24                    'Programming Language :: Python :: 3',
25                    'Topic :: Communications :: Email',
26                    'Topic :: Software Development :: Libraries'
27                    ],
28       platforms='',
29       license='http://www.gnu.org/licenses/gpl-3.0.txt',
30      )