X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2815aa511233f674009587bc1a896720a27b008c..4c138e32f5c8c565a2031017e26827d37688b037:/services/fuse/setup.py?ds=sidebyside diff --git a/services/fuse/setup.py b/services/fuse/setup.py index 23791ca8af..c6f9424fdd 100644 --- a/services/fuse/setup.py +++ b/services/fuse/setup.py @@ -1,10 +1,27 @@ #!/usr/bin/env python import os +import subprocess +import time from setuptools import setup, find_packages -README = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.rst') +SETUP_DIR = os.path.dirname(__file__) +README = os.path.join(SETUP_DIR, 'README.rst') + +cmd_opts = {'egg_info': {}} +try: + git_tags = subprocess.check_output( + ['git', 'log', '--first-parent', '--max-count=1', + '--format=format:%ct %h', SETUP_DIR], + stderr=open('/dev/null','w')).split() + assert len(git_tags) == 2 +except (AssertionError, OSError, subprocess.CalledProcessError): + pass +else: + git_tags[0] = time.strftime('%Y%m%d%H%M%S', time.gmtime(int(git_tags[0]))) + cmd_opts['egg_info']['tag_build'] = '.{}.{}'.format(*git_tags) + setup(name='arvados_fuse', version='0.1', @@ -20,10 +37,12 @@ setup(name='arvados_fuse', 'bin/arv-mount' ], install_requires=[ - 'arvados-python-client', + 'arvados-python-client>=0.1.20141103223015.68dae83', 'llfuse', 'python-daemon' ], test_suite='tests', tests_require=['PyYAML'], - zip_safe=False) + zip_safe=False, + options=cmd_opts, + )