X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython-cffi%2Fsetup.py;h=b00608358f45e160e468f7f168d7f694f941f1d6;hb=3a42abb456893b71b530f099a1467400f2b0ea71;hp=37918e3d2cdb3b7bcf0a3e3db860bfab5bd1b0db;hpb=e2df30f7a98f91543d0b3561dbb366eb4b3d812c;p=notmuch diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py index 37918e3d..b0060835 100644 --- a/bindings/python-cffi/setup.py +++ b/bindings/python-cffi/setup.py @@ -1,9 +1,11 @@ import setuptools +with open('version') 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',