X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython-cffi%2Fsetup.py;h=cda5233840bc0e0183181b8464c750ed3dd75866;hb=ca4e1d885b0d9dcdeb45ad6f2829f88dafc7949c;hp=7baf63cf528910be145d65791c69ae0c2fae5763;hpb=83c2d158983875bf77a9b7662894df585b61741c;p=notmuch diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py index 7baf63cf..cda52338 100644 --- a/bindings/python-cffi/setup.py +++ b/bindings/python-cffi/setup.py @@ -1,16 +1,18 @@ import setuptools +with open('version.txt') as fp: + VERSION = fp.read().strip() setuptools.setup( - name='notdb', - version='0.1', + name='notmuch2', + version=VERSION, description='Pythonic bindings for the notmuch mail database using CFFI', author='Floris Bruynooghe', author_email='flub@devork.be', setup_requires=['cffi>=1.0.0'], install_requires=['cffi>=1.0.0'], packages=setuptools.find_packages(exclude=['tests']), - cffi_modules=['notdb/_build.py:ffibuilder'], + cffi_modules=['notmuch2/_build.py:ffibuilder'], classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',