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