X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython-cffi%2Fsetup.py;fp=bindings%2Fpython-cffi%2Fsetup.py;h=1effcfc6feec93a7528d95819bc445f66c42a9b6;hp=37918e3d2cdb3b7bcf0a3e3db860bfab5bd1b0db;hb=81057164cddf6a5c1d4c30a23767c4de8e615c1c;hpb=af51e67127e5817e3795973da9c5e2148b7fdeec diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py index 37918e3d..1effcfc6 100644 --- a/bindings/python-cffi/setup.py +++ b/bindings/python-cffi/setup.py @@ -1,9 +1,17 @@ +import pathlib + import setuptools +THIS_FILE = pathlib.Path(__file__).absolute() +PROJECT_ROOT = THIS_FILE.parent.parent.parent +with open(PROJECT_ROOT.joinpath('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',