]> git.notmuchmail.org Git - notmuch/blob - bindings/python-cffi/setup.py
cda5233840bc0e0183181b8464c750ed3dd75866
[notmuch] / bindings / python-cffi / setup.py
1 import setuptools
2
3 with open('version.txt') as fp:
4     VERSION = fp.read().strip()
5
6 setuptools.setup(
7     name='notmuch2',
8     version=VERSION,
9     description='Pythonic bindings for the notmuch mail database using CFFI',
10     author='Floris Bruynooghe',
11     author_email='flub@devork.be',
12     setup_requires=['cffi>=1.0.0'],
13     install_requires=['cffi>=1.0.0'],
14     packages=setuptools.find_packages(exclude=['tests']),
15     cffi_modules=['notmuch2/_build.py:ffibuilder'],
16     classifiers=[
17         'Development Status :: 3 - Alpha',
18         'Intended Audience :: Developers',
19         'License :: OSI Approved :: GNU General Public License (GPL)',
20         'Programming Language :: Python :: 3',
21         'Topic :: Communications :: Email',
22         'Topic :: Software Development :: Libraries',
23     ],
24 )