X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=bindings%2Fpython%2Fsetup.py;h=b46ac8dd07ca99b4985f145a2883e4f71274ed4a;hb=61cf962df8f2000d7a9d4cbaf8c87970278d54f7;hp=286fd1962187b6351036d54d547e69dd9c0b1016;hpb=5dc189c82df35bafa54766fc8747ab46be8a9311;p=obsolete%2Fnotmuch-old diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 286fd196..b46ac8dd 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -1,13 +1,12 @@ #!/usr/bin/env python import os -import re from distutils.core import setup # get the notmuch version number without importing the notmuch module -version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), +version_file = os.path.join(os.path.dirname(__file__), 'notmuch', 'version.py') -execfile(version_file) +exec(compile(open(version_file).read(), version_file, 'exec')) assert __VERSION__, 'Failed to read the notmuch binding version number' setup(name='notmuch',