X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/71c05eec3e9c8e6f37f14760b04584a8d4c4372c..24696c5a7411f66b2b1b1a677c60907629f209e9:/services/fuse/setup.py diff --git a/services/fuse/setup.py b/services/fuse/setup.py index 98bd2d5adf..d46a312830 100644 --- a/services/fuse/setup.py +++ b/services/fuse/setup.py @@ -1,10 +1,13 @@ #!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 import os import sys +import setuptools.command.egg_info as egg_info_cmd from setuptools import setup, find_packages -from setuptools.command.egg_info import egg_info SETUP_DIR = os.path.dirname(__file__) or '.' README = os.path.join(SETUP_DIR, 'README.rst') @@ -13,7 +16,12 @@ try: import gittaggers tagger = gittaggers.EggInfoFromGit except ImportError: - tagger = egg_info + tagger = egg_info_cmd.egg_info + +short_tests_only = False +if '--short-tests-only' in sys.argv: + short_tests_only = True + sys.argv.remove('--short-tests-only') setup(name='arvados_fuse', version='0.1', @@ -28,13 +36,18 @@ setup(name='arvados_fuse', scripts=[ 'bin/arv-mount' ], + data_files=[ + ('share/doc/arvados_fuse', ['agpl-3.0.txt', 'README.rst']), + ], install_requires=[ - 'arvados-python-client>=0.1.20141203150737.277b3c7', - 'llfuse', + 'arvados-python-client >= 0.1.20151118035730', + 'llfuse>=1.2', 'python-daemon', + 'ciso8601', + 'setuptools' ], test_suite='tests', - tests_require=['PyYAML'], + tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'], zip_safe=False, cmdclass={'egg_info': tagger}, )