X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython-cffi%2Fsetup.py;h=cda5233840bc0e0183181b8464c750ed3dd75866;hb=ca4e1d885b0d9dcdeb45ad6f2829f88dafc7949c;hp=37918e3d2cdb3b7bcf0a3e3db860bfab5bd1b0db;hpb=e2df30f7a98f91543d0b3561dbb366eb4b3d812c;p=notmuch diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py index 37918e3d..cda52338 100644 --- a/bindings/python-cffi/setup.py +++ b/bindings/python-cffi/setup.py @@ -1,9 +1,11 @@ import setuptools +with open('version.txt') as fp: + VERSION = fp.read().strip() setuptools.setup( name='notmuch2', - version='0.1', + version=VERSION, description='Pythonic bindings for the notmuch mail database using CFFI', author='Floris Bruynooghe', author_email='flub@devork.be',