9614: Don't use websockets for event notification until it is more reliable.
[arvados.git] / sdk / cwl / setup.py
index 24d910265c1c76983f42ecdf3f907195eb82c0d5..36ad22b4baefa0f6ab28349e8688b6627718ff35 100644 (file)
@@ -29,10 +29,15 @@ setup(name='arvados-cwl-runner',
           'bin/cwl-runner',
           'bin/arvados-cwl-runner'
       ],
+      # Make sure to update arvados/build/run-build-packages.sh as well
+      # when updating the cwltool version pin.
       install_requires=[
-          'cwltool>=1.0.20160322201127',
+          'cwltool==1.0.20160714182449',
           'arvados-python-client>=0.1.20160322001610'
       ],
+      data_files=[
+          ('share/doc/arvados-cwl-runner', ['LICENSE-2.0.txt', 'README.rst']),
+      ],
       test_suite='tests',
       tests_require=['mock>=1.0'],
       zip_safe=True,