2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
8 import setuptools.command.egg_info as egg_info_cmd
10 from setuptools import setup, find_packages
12 SETUP_DIR = os.path.dirname(__file__) or '.'
13 README = os.path.join(SETUP_DIR, 'README.rst')
15 tagger = egg_info_cmd.egg_info
16 version = os.environ.get("ARVADOS_BUILDING_VERSION")
21 tagger = gittaggers.EggInfoFromGit
25 short_tests_only = False
26 if '--short-tests-only' in sys.argv:
27 short_tests_only = True
28 sys.argv.remove('--short-tests-only')
30 setup(name='arvados_fuse',
32 description='Arvados FUSE driver',
33 long_description=open(README).read(),
35 author_email='info@arvados.org',
36 url="https://arvados.org",
37 download_url="https://github.com/curoverse/arvados.git",
38 license='GNU Affero General Public License, version 3.0',
39 packages=['arvados_fuse'],
44 ('share/doc/arvados_fuse', ['agpl-3.0.txt', 'README.rst']),
47 'arvados-python-client >= 0.1.20151118035730',
54 tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'],
56 cmdclass={'egg_info': tagger},