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')
17 tagger = gittaggers.EggInfoFromGit
19 tagger = egg_info_cmd.egg_info
21 short_tests_only = False
22 if '--short-tests-only' in sys.argv:
23 short_tests_only = True
24 sys.argv.remove('--short-tests-only')
26 setup(name='arvados_fuse',
28 description='Arvados FUSE driver',
29 long_description=open(README).read(),
31 author_email='info@arvados.org',
32 url="https://arvados.org",
33 download_url="https://github.com/curoverse/arvados.git",
34 license='GNU Affero General Public License, version 3.0',
35 packages=['arvados_fuse'],
40 ('share/doc/arvados_fuse', ['agpl-3.0.txt', 'README.rst']),
43 'arvados-python-client >= 0.1.20151118035730',
50 tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'],
52 cmdclass={'egg_info': tagger},