13306: Adds declaration of py2/3 support to arvados cwl and python sdks
authorEric Biagiotti <ebiagiotti@veritasgenetcs.com>
Tue, 5 Feb 2019 17:55:54 +0000 (12:55 -0500)
committerEric Biagiotti <ebiagiotti@veritasgenetcs.com>
Tue, 5 Feb 2019 17:55:54 +0000 (12:55 -0500)
Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti <eric.biagiotti@gmail.com>

sdk/cwl/setup.py
sdk/python/setup.py

index 3bd62532a8b80b3d3513107470b827ba6ca4d02c..711796374849c115296e089e31a44729330f45fb 100644 (file)
@@ -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',
index 9b38f07140049807947c8c3f3221966136a7a3d9..5c781b158350fa6d7d869b061b24d0cfd95dcae1 100644 (file)
@@ -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