X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a77093bdb8cbbba6860bdda67da4d19ad3ac5a0c..79aca915815d298d2c20546108284627ee6cb84b:/services/fuse/setup.py diff --git a/services/fuse/setup.py b/services/fuse/setup.py index be9e4e64a5..c65501c58e 100644 --- a/services/fuse/setup.py +++ b/services/fuse/setup.py @@ -1,26 +1,19 @@ #!/usr/bin/env python import os -import subprocess -import time +import sys +import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages -SETUP_DIR = os.path.dirname(__file__) +SETUP_DIR = os.path.dirname(__file__) or '.' 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]).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) - + import gittaggers + tagger = gittaggers.EggInfoFromGit +except ImportError: + tagger = egg_info_cmd.egg_info setup(name='arvados_fuse', version='0.1', @@ -36,12 +29,12 @@ setup(name='arvados_fuse', 'bin/arv-mount' ], install_requires=[ - 'arvados-python-client>=0.1.1411069908.8ba7f94', # 2014-09-18 + 'arvados-python-client>=0.1.20141203150737.277b3c7', 'llfuse', - 'python-daemon' + 'python-daemon', ], test_suite='tests', tests_require=['PyYAML'], zip_safe=False, - options=cmd_opts, + cmdclass={'egg_info': tagger}, )