From 41beca9c117fa9a7f46addd3a9e8a46cc7ffe328 Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Tue, 5 Feb 2019 12:55:54 -0500 Subject: [PATCH] 13306: Adds declaration of py2/3 support to arvados cwl and python sdks Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- sdk/cwl/setup.py | 4 ++++ sdk/python/setup.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/sdk/cwl/setup.py b/sdk/cwl/setup.py index 3bd62532a8..7117963748 100644 --- a/sdk/cwl/setup.py +++ b/sdk/cwl/setup.py @@ -45,6 +45,10 @@ setup(name='arvados-cwl-runner', data_files=[ ('share/doc/arvados-cwl-runner', ['LICENSE-2.0.txt', 'README.rst']), ], + classifiers=[ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + ], test_suite='tests', tests_require=[ 'mock>=1.0', diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 9b38f07140..5c781b1583 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -56,6 +56,10 @@ setup(name='arvados-python-client', 'ws4py >=0.4.2', 'subprocess32 >=3.5.1', ], + classifiers=[ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + ], test_suite='tests', tests_require=['pbr<1.7.0', 'mock>=1.0', 'PyYAML'], zip_safe=False -- 2.30.2