X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/242b1cc2ca6b85f7bb9e176a786d7c484eb35c53..12319740a7d95c099a5521fd85a3200528307de1:/tools/crunchstat-summary/setup.py diff --git a/tools/crunchstat-summary/setup.py b/tools/crunchstat-summary/setup.py index aeb0fe6c33..e54d82f151 100755 --- a/tools/crunchstat-summary/setup.py +++ b/tools/crunchstat-summary/setup.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 import os import sys @@ -23,6 +26,7 @@ setup(name='crunchstat_summary', download_url="https://github.com/curoverse/arvados.git", license='GNU Affero General Public License, version 3.0', packages=['crunchstat_summary'], + include_package_data=True, scripts=[ 'bin/crunchstat-summary' ], @@ -33,6 +37,7 @@ setup(name='crunchstat_summary', 'arvados-python-client', ], test_suite='tests', + tests_require=['pbr<1.7.0', 'mock>=1.0'], zip_safe=False, cmdclass={'egg_info': tagger}, )