13306: Adds declaration of py2/3 support to arvados cwl and python sdks
[arvados.git] / sdk / python / setup.py
index 31cb4407ce566d88495bbec8789950af78830b88..5c781b158350fa6d7d869b061b24d0cfd95dcae1 100644 (file)
@@ -46,14 +46,19 @@ setup(name='arvados-python-client',
           ('share/doc/arvados-python-client', ['LICENSE-2.0.txt', 'README.rst']),
       ],
       install_requires=[
-          'ciso8601 >=1.0.6',
+          'ciso8601 >=1.0.6, <2.0.0',
           'future',
           'google-api-python-client >=1.6.2, <1.7',
           'httplib2 >=0.9.2',
           'pycurl >=7.19.5.1',
-          'ruamel.yaml >=0.13.7, <0.15',
+          'ruamel.yaml >=0.15.54, <=0.15.77',
           'setuptools',
-          'ws4py <0.4',
+          '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'],