Merge branch '19164-add-flags'
[arvados.git] / tools / crunchstat-summary / setup.py
1 #!/usr/bin/env python3
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: AGPL-3.0
5
6 from __future__ import absolute_import
7 import os
8 import sys
9 import re
10
11 from setuptools import setup, find_packages
12
13 SETUP_DIR = os.path.dirname(__file__) or '.'
14 README = os.path.join(SETUP_DIR, 'README.rst')
15
16 import arvados_version
17 version = arvados_version.get_version(SETUP_DIR, "crunchstat_summary")
18 if os.environ.get('ARVADOS_BUILDING_VERSION', False):
19     pysdk_dep = "=={}".format(version)
20 else:
21     # On dev releases, arvados-python-client may have a different timestamp
22     pysdk_dep = "<={}".format(version)
23
24 short_tests_only = False
25 if '--short-tests-only' in sys.argv:
26     short_tests_only = True
27     sys.argv.remove('--short-tests-only')
28
29 setup(name='crunchstat_summary',
30       version=version,
31       description='Arvados crunchstat-summary reads crunch log files and summarizes resource usage',
32       author='Arvados',
33       author_email='info@arvados.org',
34       url="https://arvados.org",
35       download_url="https://github.com/arvados/arvados.git",
36       license='GNU Affero General Public License, version 3.0',
37       packages=['crunchstat_summary'],
38       include_package_data=True,
39       scripts=[
40           'bin/crunchstat-summary'
41       ],
42       data_files=[
43           ('share/doc/crunchstat_summary', ['agpl-3.0.txt']),
44       ],
45       install_requires=[
46           'arvados-python-client{}'.format(pysdk_dep),
47       ],
48       test_suite='tests',
49       tests_require=['pbr<1.7.0', 'mock>=1.0'],
50       zip_safe=False,
51 )