X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e8f99cfef7cfbfcf1a1485d69250f24ced3fd609..d9e5d620d8e68b349bb79b9749a74110603a89d4:/sdk/cwl/setup.py diff --git a/sdk/cwl/setup.py b/sdk/cwl/setup.py index 3bd62532a8..d97e7428da 100644 --- a/sdk/cwl/setup.py +++ b/sdk/cwl/setup.py @@ -37,14 +37,21 @@ setup(name='arvados-cwl-runner', 'schema-salad==3.0.20181129082112', 'typing >= 3.6.4', 'ruamel.yaml >=0.15.54, <=0.15.77', - 'arvados-python-client>=1.2.1.20181130020805', + 'arvados-python-client>=1.3.0.20190205182514', 'setuptools', - 'ciso8601 >=1.0.6, <2.0.0', - 'subprocess32>=3.5.1', + 'ciso8601 >= 2.0.0', ], + extras_require={ + ':os.name=="posix" and python_version<"3"': ['subprocess32 >= 3.5.1'], + ':python_version<"3"': ['pytz'], + }, 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',