toil 6.1.0a1__py3-none-any.whl → 8.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. toil/__init__.py +122 -315
  2. toil/batchSystems/__init__.py +1 -0
  3. toil/batchSystems/abstractBatchSystem.py +173 -89
  4. toil/batchSystems/abstractGridEngineBatchSystem.py +272 -148
  5. toil/batchSystems/awsBatch.py +244 -135
  6. toil/batchSystems/cleanup_support.py +26 -16
  7. toil/batchSystems/contained_executor.py +31 -28
  8. toil/batchSystems/gridengine.py +86 -50
  9. toil/batchSystems/htcondor.py +166 -89
  10. toil/batchSystems/kubernetes.py +632 -382
  11. toil/batchSystems/local_support.py +20 -15
  12. toil/batchSystems/lsf.py +134 -81
  13. toil/batchSystems/lsfHelper.py +13 -11
  14. toil/batchSystems/mesos/__init__.py +41 -29
  15. toil/batchSystems/mesos/batchSystem.py +290 -151
  16. toil/batchSystems/mesos/executor.py +79 -50
  17. toil/batchSystems/mesos/test/__init__.py +31 -23
  18. toil/batchSystems/options.py +46 -28
  19. toil/batchSystems/registry.py +53 -19
  20. toil/batchSystems/singleMachine.py +296 -125
  21. toil/batchSystems/slurm.py +603 -138
  22. toil/batchSystems/torque.py +47 -33
  23. toil/bus.py +186 -76
  24. toil/common.py +664 -368
  25. toil/cwl/__init__.py +1 -1
  26. toil/cwl/cwltoil.py +1136 -483
  27. toil/cwl/utils.py +17 -22
  28. toil/deferred.py +63 -42
  29. toil/exceptions.py +5 -3
  30. toil/fileStores/__init__.py +5 -5
  31. toil/fileStores/abstractFileStore.py +140 -60
  32. toil/fileStores/cachingFileStore.py +717 -269
  33. toil/fileStores/nonCachingFileStore.py +116 -87
  34. toil/job.py +1225 -368
  35. toil/jobStores/abstractJobStore.py +416 -266
  36. toil/jobStores/aws/jobStore.py +863 -477
  37. toil/jobStores/aws/utils.py +201 -120
  38. toil/jobStores/conftest.py +3 -2
  39. toil/jobStores/fileJobStore.py +292 -154
  40. toil/jobStores/googleJobStore.py +140 -74
  41. toil/jobStores/utils.py +36 -15
  42. toil/leader.py +668 -272
  43. toil/lib/accelerators.py +115 -18
  44. toil/lib/aws/__init__.py +74 -31
  45. toil/lib/aws/ami.py +122 -87
  46. toil/lib/aws/iam.py +284 -108
  47. toil/lib/aws/s3.py +31 -0
  48. toil/lib/aws/session.py +214 -39
  49. toil/lib/aws/utils.py +287 -231
  50. toil/lib/bioio.py +13 -5
  51. toil/lib/compatibility.py +11 -6
  52. toil/lib/conversions.py +104 -47
  53. toil/lib/docker.py +131 -103
  54. toil/lib/ec2.py +361 -199
  55. toil/lib/ec2nodes.py +174 -106
  56. toil/lib/encryption/_dummy.py +5 -3
  57. toil/lib/encryption/_nacl.py +10 -6
  58. toil/lib/encryption/conftest.py +1 -0
  59. toil/lib/exceptions.py +26 -7
  60. toil/lib/expando.py +5 -3
  61. toil/lib/ftp_utils.py +217 -0
  62. toil/lib/generatedEC2Lists.py +127 -19
  63. toil/lib/humanize.py +6 -2
  64. toil/lib/integration.py +341 -0
  65. toil/lib/io.py +141 -15
  66. toil/lib/iterables.py +4 -2
  67. toil/lib/memoize.py +12 -8
  68. toil/lib/misc.py +66 -21
  69. toil/lib/objects.py +2 -2
  70. toil/lib/resources.py +68 -15
  71. toil/lib/retry.py +126 -81
  72. toil/lib/threading.py +299 -82
  73. toil/lib/throttle.py +16 -15
  74. toil/options/common.py +843 -409
  75. toil/options/cwl.py +175 -90
  76. toil/options/runner.py +50 -0
  77. toil/options/wdl.py +73 -17
  78. toil/provisioners/__init__.py +117 -46
  79. toil/provisioners/abstractProvisioner.py +332 -157
  80. toil/provisioners/aws/__init__.py +70 -33
  81. toil/provisioners/aws/awsProvisioner.py +1145 -715
  82. toil/provisioners/clusterScaler.py +541 -279
  83. toil/provisioners/gceProvisioner.py +282 -179
  84. toil/provisioners/node.py +155 -79
  85. toil/realtimeLogger.py +34 -22
  86. toil/resource.py +137 -75
  87. toil/server/app.py +128 -62
  88. toil/server/celery_app.py +3 -1
  89. toil/server/cli/wes_cwl_runner.py +82 -53
  90. toil/server/utils.py +54 -28
  91. toil/server/wes/abstract_backend.py +64 -26
  92. toil/server/wes/amazon_wes_utils.py +21 -15
  93. toil/server/wes/tasks.py +121 -63
  94. toil/server/wes/toil_backend.py +142 -107
  95. toil/server/wsgi_app.py +4 -3
  96. toil/serviceManager.py +58 -22
  97. toil/statsAndLogging.py +224 -70
  98. toil/test/__init__.py +282 -183
  99. toil/test/batchSystems/batchSystemTest.py +460 -210
  100. toil/test/batchSystems/batch_system_plugin_test.py +90 -0
  101. toil/test/batchSystems/test_gridengine.py +173 -0
  102. toil/test/batchSystems/test_lsf_helper.py +67 -58
  103. toil/test/batchSystems/test_slurm.py +110 -49
  104. toil/test/cactus/__init__.py +0 -0
  105. toil/test/cactus/test_cactus_integration.py +56 -0
  106. toil/test/cwl/cwlTest.py +496 -287
  107. toil/test/cwl/measure_default_memory.cwl +12 -0
  108. toil/test/cwl/not_run_required_input.cwl +29 -0
  109. toil/test/cwl/scatter_duplicate_outputs.cwl +40 -0
  110. toil/test/cwl/seqtk_seq.cwl +1 -1
  111. toil/test/docs/scriptsTest.py +69 -46
  112. toil/test/jobStores/jobStoreTest.py +427 -264
  113. toil/test/lib/aws/test_iam.py +118 -50
  114. toil/test/lib/aws/test_s3.py +16 -9
  115. toil/test/lib/aws/test_utils.py +5 -6
  116. toil/test/lib/dockerTest.py +118 -141
  117. toil/test/lib/test_conversions.py +113 -115
  118. toil/test/lib/test_ec2.py +58 -50
  119. toil/test/lib/test_integration.py +104 -0
  120. toil/test/lib/test_misc.py +12 -5
  121. toil/test/mesos/MesosDataStructuresTest.py +23 -10
  122. toil/test/mesos/helloWorld.py +7 -6
  123. toil/test/mesos/stress.py +25 -20
  124. toil/test/options/__init__.py +13 -0
  125. toil/test/options/options.py +42 -0
  126. toil/test/provisioners/aws/awsProvisionerTest.py +320 -150
  127. toil/test/provisioners/clusterScalerTest.py +440 -250
  128. toil/test/provisioners/clusterTest.py +166 -44
  129. toil/test/provisioners/gceProvisionerTest.py +174 -100
  130. toil/test/provisioners/provisionerTest.py +25 -13
  131. toil/test/provisioners/restartScript.py +5 -4
  132. toil/test/server/serverTest.py +188 -141
  133. toil/test/sort/restart_sort.py +137 -68
  134. toil/test/sort/sort.py +134 -66
  135. toil/test/sort/sortTest.py +91 -49
  136. toil/test/src/autoDeploymentTest.py +141 -101
  137. toil/test/src/busTest.py +20 -18
  138. toil/test/src/checkpointTest.py +8 -2
  139. toil/test/src/deferredFunctionTest.py +49 -35
  140. toil/test/src/dockerCheckTest.py +32 -24
  141. toil/test/src/environmentTest.py +135 -0
  142. toil/test/src/fileStoreTest.py +539 -272
  143. toil/test/src/helloWorldTest.py +7 -4
  144. toil/test/src/importExportFileTest.py +61 -31
  145. toil/test/src/jobDescriptionTest.py +46 -21
  146. toil/test/src/jobEncapsulationTest.py +2 -0
  147. toil/test/src/jobFileStoreTest.py +74 -50
  148. toil/test/src/jobServiceTest.py +187 -73
  149. toil/test/src/jobTest.py +121 -71
  150. toil/test/src/miscTests.py +19 -18
  151. toil/test/src/promisedRequirementTest.py +82 -36
  152. toil/test/src/promisesTest.py +7 -6
  153. toil/test/src/realtimeLoggerTest.py +10 -6
  154. toil/test/src/regularLogTest.py +71 -37
  155. toil/test/src/resourceTest.py +80 -49
  156. toil/test/src/restartDAGTest.py +36 -22
  157. toil/test/src/resumabilityTest.py +9 -2
  158. toil/test/src/retainTempDirTest.py +45 -14
  159. toil/test/src/systemTest.py +12 -8
  160. toil/test/src/threadingTest.py +44 -25
  161. toil/test/src/toilContextManagerTest.py +10 -7
  162. toil/test/src/userDefinedJobArgTypeTest.py +8 -5
  163. toil/test/src/workerTest.py +73 -23
  164. toil/test/utils/toilDebugTest.py +103 -33
  165. toil/test/utils/toilKillTest.py +4 -5
  166. toil/test/utils/utilsTest.py +245 -106
  167. toil/test/wdl/wdltoil_test.py +818 -149
  168. toil/test/wdl/wdltoil_test_kubernetes.py +91 -0
  169. toil/toilState.py +120 -35
  170. toil/utils/toilConfig.py +13 -4
  171. toil/utils/toilDebugFile.py +44 -27
  172. toil/utils/toilDebugJob.py +214 -27
  173. toil/utils/toilDestroyCluster.py +11 -6
  174. toil/utils/toilKill.py +8 -3
  175. toil/utils/toilLaunchCluster.py +256 -140
  176. toil/utils/toilMain.py +37 -16
  177. toil/utils/toilRsyncCluster.py +32 -14
  178. toil/utils/toilSshCluster.py +49 -22
  179. toil/utils/toilStats.py +356 -273
  180. toil/utils/toilStatus.py +292 -139
  181. toil/utils/toilUpdateEC2Instances.py +3 -1
  182. toil/version.py +12 -12
  183. toil/wdl/utils.py +5 -5
  184. toil/wdl/wdltoil.py +3913 -1033
  185. toil/worker.py +367 -184
  186. {toil-6.1.0a1.dist-info → toil-8.0.0.dist-info}/LICENSE +25 -0
  187. toil-8.0.0.dist-info/METADATA +173 -0
  188. toil-8.0.0.dist-info/RECORD +253 -0
  189. {toil-6.1.0a1.dist-info → toil-8.0.0.dist-info}/WHEEL +1 -1
  190. toil-6.1.0a1.dist-info/METADATA +0 -125
  191. toil-6.1.0a1.dist-info/RECORD +0 -237
  192. {toil-6.1.0a1.dist-info → toil-8.0.0.dist-info}/entry_points.txt +0 -0
  193. {toil-6.1.0a1.dist-info → toil-8.0.0.dist-info}/top_level.txt +0 -0
@@ -202,3 +202,28 @@
202
202
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
203
203
  See the License for the specific language governing permissions and
204
204
  limitations under the License.
205
+
206
+ All code in this repository excluding src/toil/statsAndLogging.py::install_log_color is under the Apache License as outlined directly above.
207
+ Some code in src/toil/statsAndLogging.py::install_log_color is under the MiniWDL MIT License as outlined directly below.
208
+
209
+ MIT License
210
+
211
+ Copyright (c) 2018 Chan Zuckerberg Initiative
212
+
213
+ Permission is hereby granted, free of charge, to any person obtaining a copy
214
+ of this software and associated documentation files (the "Software"), to deal
215
+ in the Software without restriction, including without limitation the rights
216
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
217
+ copies of the Software, and to permit persons to whom the Software is
218
+ furnished to do so, subject to the following conditions:
219
+
220
+ The above copyright notice and this permission notice shall be included in all
221
+ copies or substantial portions of the Software.
222
+
223
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
224
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
225
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
226
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
227
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
228
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
229
+ SOFTWARE.
@@ -0,0 +1,173 @@
1
+ Metadata-Version: 2.2
2
+ Name: toil
3
+ Version: 8.0.0
4
+ Summary: Pipeline management software for clusters.
5
+ Home-page: https://github.com/DataBiosphere/toil
6
+ Author: Benedict Paten and the Toil community
7
+ Author-email: toil-community@googlegroups.com
8
+ License: Apache License v2.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Intended Audience :: Healthcare Industry
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Natural Language :: English
16
+ Classifier: Operating System :: MacOS :: MacOS X
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Operating System :: POSIX :: Linux
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Topic :: Scientific/Engineering
25
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
26
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
27
+ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
28
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
29
+ Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
30
+ Classifier: Topic :: System :: Distributed Computing
31
+ Classifier: Topic :: Utilities
32
+ Requires-Python: >=3.9
33
+ Description-Content-Type: text/x-rst
34
+ License-File: LICENSE
35
+ Requires-Dist: dill<0.4,>=0.3.2
36
+ Requires-Dist: requests<=2.31.0
37
+ Requires-Dist: docker<8,>=6.1.0
38
+ Requires-Dist: urllib3<3,>=1.26.0
39
+ Requires-Dist: python-dateutil
40
+ Requires-Dist: psutil<7,>=6.1.0
41
+ Requires-Dist: PyPubSub<5,>=4.0.3
42
+ Requires-Dist: addict<2.5,>=2.2.1
43
+ Requires-Dist: backports.zoneinfo[tzdata]; python_version < "3.9"
44
+ Requires-Dist: enlighten<2,>=1.5.2
45
+ Requires-Dist: configargparse<2,>=1.7
46
+ Requires-Dist: ruamel.yaml>=0.15
47
+ Requires-Dist: pyyaml<7,>=6
48
+ Requires-Dist: typing-extensions<5,>=4.6.2
49
+ Requires-Dist: coloredlogs<16,>=15
50
+ Provides-Extra: aws
51
+ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post2; extra == "aws"
52
+ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "aws"
53
+ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
54
+ Requires-Dist: moto<6,>=5.0.3; extra == "aws"
55
+ Requires-Dist: ec2_metadata<3; extra == "aws"
56
+ Provides-Extra: cwl
57
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "cwl"
58
+ Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
59
+ Requires-Dist: galaxy-tool-util<25; extra == "cwl"
60
+ Requires-Dist: galaxy-util<25; extra == "cwl"
61
+ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
62
+ Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
63
+ Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
64
+ Requires-Dist: CacheControl[filecache]; extra == "cwl"
65
+ Requires-Dist: cwl-utils>=0.36; extra == "cwl"
66
+ Provides-Extra: encryption
67
+ Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
68
+ Provides-Extra: google
69
+ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "google"
70
+ Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
71
+ Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
72
+ Provides-Extra: kubernetes
73
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "kubernetes"
74
+ Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
75
+ Requires-Dist: types-urllib3; extra == "kubernetes"
76
+ Requires-Dist: types-PyYAML; extra == "kubernetes"
77
+ Requires-Dist: idna>=2; extra == "kubernetes"
78
+ Provides-Extra: wdl
79
+ Requires-Dist: miniwdl==1.12.1; extra == "wdl"
80
+ Requires-Dist: wdlparse==0.1.0; extra == "wdl"
81
+ Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
82
+ Provides-Extra: server
83
+ Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "server"
84
+ Requires-Dist: flask<4,>=2.0; extra == "server"
85
+ Requires-Dist: werkzeug<4,>=2.0; extra == "server"
86
+ Requires-Dist: flask-cors==5.0.0; extra == "server"
87
+ Requires-Dist: gunicorn==23.0.0; extra == "server"
88
+ Requires-Dist: celery<6,>=5.1.0; extra == "server"
89
+ Requires-Dist: wes-service<5,>=4.0.0; extra == "server"
90
+ Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "server"
91
+ Provides-Extra: htcondor
92
+ Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
93
+ Provides-Extra: mesos
94
+ Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "mesos"
95
+ Provides-Extra: all
96
+ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post2; extra == "all"
97
+ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
98
+ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
99
+ Requires-Dist: moto<6,>=5.0.3; extra == "all"
100
+ Requires-Dist: ec2_metadata<3; extra == "all"
101
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "all"
102
+ Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
103
+ Requires-Dist: galaxy-tool-util<25; extra == "all"
104
+ Requires-Dist: galaxy-util<25; extra == "all"
105
+ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
106
+ Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
107
+ Requires-Dist: networkx!=2.8.1,<4; extra == "all"
108
+ Requires-Dist: CacheControl[filecache]; extra == "all"
109
+ Requires-Dist: cwl-utils>=0.36; extra == "all"
110
+ Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
111
+ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "all"
112
+ Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
113
+ Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
114
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "all"
115
+ Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
116
+ Requires-Dist: types-urllib3; extra == "all"
117
+ Requires-Dist: types-PyYAML; extra == "all"
118
+ Requires-Dist: idna>=2; extra == "all"
119
+ Requires-Dist: miniwdl==1.12.1; extra == "all"
120
+ Requires-Dist: wdlparse==0.1.0; extra == "all"
121
+ Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
122
+ Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "all"
123
+ Requires-Dist: flask<4,>=2.0; extra == "all"
124
+ Requires-Dist: werkzeug<4,>=2.0; extra == "all"
125
+ Requires-Dist: flask-cors==5.0.0; extra == "all"
126
+ Requires-Dist: gunicorn==23.0.0; extra == "all"
127
+ Requires-Dist: celery<6,>=5.1.0; extra == "all"
128
+ Requires-Dist: wes-service<5,>=4.0.0; extra == "all"
129
+ Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "all"
130
+ Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "all"
131
+ Dynamic: author
132
+ Dynamic: author-email
133
+ Dynamic: classifier
134
+ Dynamic: description
135
+ Dynamic: description-content-type
136
+ Dynamic: home-page
137
+ Dynamic: license
138
+ Dynamic: provides-extra
139
+ Dynamic: requires-dist
140
+ Dynamic: requires-python
141
+ Dynamic: summary
142
+
143
+ .. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
144
+ :alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
145
+ :target: https://gitter.im/bd2k-genomics-toil/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
146
+
147
+ Toil is a scalable, efficient, cross-platform (Linux & macOS) pipeline management system,
148
+ written entirely in Python, and designed around the principles of functional
149
+ programming. It supports running workflows written in either Common Workflow Language (`CWL`_) 1.0-1.2 or
150
+ Workflow Description Language (`WDL`_) 1.0-1.1, as well as having its own rich Python API for writing workflows against.
151
+ It supports running workflows locally on your system (e.g. a laptop), on an HPC cluster, or in the cloud.
152
+
153
+ * Check the `website`_ for a description of Toil and its features.
154
+ * Full documentation for the latest stable release can be found at
155
+ `Read the Docs`_.
156
+ * Please subscribe to low-volume `announce`_ mailing list so we keep you informed
157
+ * Google Groups discussion `forum`_
158
+ * See our occasional `blog`_ for tutorials.
159
+ * Use `biostars`_ channel for discussion.
160
+
161
+ .. _website: http://toil.ucsc-cgl.org/
162
+ .. _Read the Docs: https://toil.readthedocs.io/en/latest
163
+ .. _announce: https://groups.google.com/forum/#!forum/toil-announce
164
+ .. _forum: https://groups.google.com/forum/#!forum/toil-community
165
+ .. _blog: https://toilpipelines.wordpress.com/
166
+ .. _biostars: https://www.biostars.org/t/toil/
167
+ .. _CWL: https://www.commonwl.org/
168
+ .. _WDL: https://openwdl.org/
169
+
170
+ Notes:
171
+
172
+ * Toil moved from https://github.com/BD2KGenomics/toil to https://github.com/DataBiosphere/toil on July 5th, 2018.
173
+ * Toil dropped Python 2.7 support on February 13, 2020 (the last working py2.7 version is 3.24.0).
@@ -0,0 +1,253 @@
1
+ toil/__init__.py,sha256=v0u19Zmd-JKCWBr2jn8Eal4oXMOm-sY5MSSnqUIhfH8,19300
2
+ toil/bus.py,sha256=Hi2TTCVGX4WTw67BOKo7l9yZw9Ln_zcobJzQxrfge4M,29938
3
+ toil/common.py,sha256=EwIN1Ith42OJsSknXwVk7tZ3SFyuHne13_jPZUxP6WE,75521
4
+ toil/deferred.py,sha256=2ShsuPqDwu0jhBQ6ocMwe4lfNegBm2lj7dOG9E7X3Zc,14152
5
+ toil/exceptions.py,sha256=oL2d9uutwtcPkMcEUGrixKUd4y1JLSA0-N7hNJqCLSk,1883
6
+ toil/job.py,sha256=Bpj5bi5NPzkUMrG4mbEbkFHHWheqZwZbGRHAtKFZPWw,173199
7
+ toil/leader.py,sha256=ubIdkEUb3hmGAc7oCWnKuvxOAlyyvOgVyDCN4i6DJAw,85101
8
+ toil/realtimeLogger.py,sha256=2O4AUaKtvItzzCAQKORIEHZ2cDoLf_6njoKWv_uzdFc,9878
9
+ toil/resource.py,sha256=PlI6R28aYqfYLDsztjlAYpkVGfSr2O0DhrgDXpXJxa0,25650
10
+ toil/serviceManager.py,sha256=GE5IUjQmNrekYv9tclim0RlCFf4ueOQ2H4qHjMBrOcg,19978
11
+ toil/statsAndLogging.py,sha256=Nq4bwpieQVmJNpj6vuN8zdM_yVRA2pKpcJGcxOn7SWI,17152
12
+ toil/toilState.py,sha256=DD52XQv8wRCYzF7-F6Olqa_k6u-_py-JWyjqJHRh6Z0,17989
13
+ toil/version.py,sha256=0ff-z3yLFu7Q8r18rieIWcRnUVqARJPAA8YN_omkeTc,488
14
+ toil/worker.py,sha256=-V5aL9-5fq2muPZKGKix_D81R5bJrRjQ4fuHzyEq9WM,35998
15
+ toil/batchSystems/__init__.py,sha256=T8psI5GmvE71_XmajKsfeQ3YUs6XM7rX1Fy9VNUX_-Q,1036
16
+ toil/batchSystems/abstractBatchSystem.py,sha256=h8mbA_k_7EZqOrbcdQmKHDcAy6D2ZB77XXS3Wu4-E90,33542
17
+ toil/batchSystems/abstractGridEngineBatchSystem.py,sha256=yR3nlCvJRcxYEDRyA3qYuNjvgmVDfzvW4bx9RY14TLg,24336
18
+ toil/batchSystems/awsBatch.py,sha256=vpV6CxUBi0sj5b91cWKi7Gonk276Nfz0_-QLZVoahNQ,27298
19
+ toil/batchSystems/cleanup_support.py,sha256=mpExAW-Tw2ZnGMgJEt06zZGjNLhXHPLVuDEraM9N8r4,4054
20
+ toil/batchSystems/contained_executor.py,sha256=2wP3sDyOanB2YrXxhdJ1PI3VohKK37ifgRya2F0rcMY,5111
21
+ toil/batchSystems/gridengine.py,sha256=OL1SOQXV5vz7UwNSSZ2lKTRArkeaVRND5FyqQ8K8V20,8114
22
+ toil/batchSystems/htcondor.py,sha256=nCylLUvRyX2k79LYriJgwhmowJBRekBWYUSpJgtawsY,18613
23
+ toil/batchSystems/kubernetes.py,sha256=5bC_ipdfgIzl2_I1SxqrcRHPjbcicBNznNK2c3u0gnY,86959
24
+ toil/batchSystems/local_support.py,sha256=R-DT_G5jcQXjZyDQ9OdFj0KUeULMSmcLBen3p-tSGdw,3893
25
+ toil/batchSystems/lsf.py,sha256=rQJe6dpnqs-LAZ0qaAo94VtxvhADwv8XzRTrQulp-mQ,18089
26
+ toil/batchSystems/lsfHelper.py,sha256=IE5y-x-Mofau7jksWjBdTLt5dVvyj-w8dd3gqwZ-r8o,7227
27
+ toil/batchSystems/options.py,sha256=qA6cIFIviI-5ogKwUaTHQkmVnJ7qzsNts8kI3xc49XU,8110
28
+ toil/batchSystems/registry.py,sha256=eizqlhn4AdBzykdOFu_S5ZcU4eYpMB_vDTb8ml6W3Kw,6701
29
+ toil/batchSystems/singleMachine.py,sha256=5qj9gr0bcT8RciNYM_eC-aHORdDSbdM4SGlam1SGlGw,40348
30
+ toil/batchSystems/slurm.py,sha256=oaP_4axl2YBAWFSoK7khAwPCaTVihJTxtP2VRZQ-vn4,37000
31
+ toil/batchSystems/torque.py,sha256=A3Pe1IvIltpJSoVulfEUrilr-Ok_8E9hf41jbHYYzjQ,11795
32
+ toil/batchSystems/mesos/__init__.py,sha256=jkeRf24eXeOTdRibDzJtqKwXup47FseQS0UXKriKrxg,3554
33
+ toil/batchSystems/mesos/batchSystem.py,sha256=-3COwXjaibZClIHfAgj98SVy2R2yK8UUCjWaOj-R0hM,40194
34
+ toil/batchSystems/mesos/conftest.py,sha256=n1ZIXzZP0msJlZL_ZIG84trKifxFLRLr2uIr-EjDucQ,836
35
+ toil/batchSystems/mesos/executor.py,sha256=ETsWkx0JaERw7YS5rzv23_xj492hKSxDOsanVilwy7Q,12729
36
+ toil/batchSystems/mesos/test/__init__.py,sha256=qa4iDR9yGhZyViSvTyPH5wi6qIlKpKcC5-bj3uvB4PY,4718
37
+ toil/cwl/__init__.py,sha256=lfyX1eoJ1IA26AUzUl6-ODTi0ZqD_0F6-rL5eqfl_9E,2131
38
+ toil/cwl/conftest.py,sha256=R6Jw5-PeTCK0rapfHmV_VJwVcqlVbO5w3cFUbaIWUnk,848
39
+ toil/cwl/cwltoil.py,sha256=aHc1lqQd9sPaJshg4A--qtkH9pyBAB8XpQfRH14vkU0,181589
40
+ toil/cwl/utils.py,sha256=CV69GfCEJ1uvAlbDPJKq42Ed19vBE2E5F7v5MZJK7Gw,8023
41
+ toil/fileStores/__init__.py,sha256=xbcTdb31JXsLPxBbL3P5lm8XZlHNBohHPyawXNnZLOs,2388
42
+ toil/fileStores/abstractFileStore.py,sha256=g_gViwfPqYOjGOTQCXrHOulQanump6P0SPirvX6ZqWQ,30851
43
+ toil/fileStores/cachingFileStore.py,sha256=g5e4sV3XYkvpv6ZjbEuRc9KreX57RJtr4vOvxV_B4rw,101746
44
+ toil/fileStores/nonCachingFileStore.py,sha256=VsPoKz0Ln5HP-trLlAarqhqJIzdwpADfu8E_UJH4X9w,15806
45
+ toil/jobStores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ toil/jobStores/abstractJobStore.py,sha256=igIKcOQKOsgVqHQTD9PvWqFgjkBDttdbPM1LP-Gzsl0,78640
47
+ toil/jobStores/conftest.py,sha256=xNy_u3dGZz0206dnixzYvAvT85a0HfkIJw9XbsiGJnM,837
48
+ toil/jobStores/fileJobStore.py,sha256=r8rymME47BTjGW5a_kb1QDTWF4MDGNrrXtAc8qwpfIk,52035
49
+ toil/jobStores/googleJobStore.py,sha256=xcBWTsM35MyfzYwGZJmqBXOTFMBFHTUFDO0tqc5ALgY,24414
50
+ toil/jobStores/utils.py,sha256=R1NKkyHC9txT7KMXAoa51aNOJJOHx7HloPqI7PD6ipA,15521
51
+ toil/jobStores/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ toil/jobStores/aws/jobStore.py,sha256=jJkYnNESOJbGYZ-eydFQjKSxWAe3p9dkXx8r0NQSTPg,88359
53
+ toil/jobStores/aws/utils.py,sha256=GDSNhcwgkhyrq1YDdYJscg1gjFyGpGxIARUYH3cMvPw,20584
54
+ toil/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ toil/lib/accelerators.py,sha256=HgDO5rgz-9tU_-fLfScABliMH3VdYSVt-juKfQsUenQ,7937
56
+ toil/lib/bioio.py,sha256=lB9fuyOjWtNZfQCc4x2WzGK3x3xDaq6kW8Ghj1wOchc,2384
57
+ toil/lib/compatibility.py,sha256=pPPTJyk3GUZ8SdAv14a3v2HLWbNtcnsAFuCEbh36UZ4,1535
58
+ toil/lib/conversions.py,sha256=CuOHhxpS8RFdp9U-oLSWmhSNLMKT7lqG5N5uhvxfCK4,5135
59
+ toil/lib/docker.py,sha256=IUWvImtzdaPrCqhzVmTrknXXpgPef23DLUsslZ7KInE,20036
60
+ toil/lib/ec2.py,sha256=gceJSDOlhiD0jtKs0e7rS8ploctt-fhJHzrYHr1_lcw,25570
61
+ toil/lib/ec2nodes.py,sha256=uydhQaTlr_ISjb658MWocL5CRhbzJb6T-OqqylkC-Q0,14668
62
+ toil/lib/exceptions.py,sha256=lj9oMa1B10TDeJ-7-xgL48Qrx6PExNrLUE2ZCdWQ2BQ,2946
63
+ toil/lib/expando.py,sha256=JN8dbYk5K48Dwmvb_3bCkO6NYbb89iL0CRchg3_FyFA,2924
64
+ toil/lib/ftp_utils.py,sha256=VqrstWP6dKJnTHtrxGPp7dzeDpyaD4IR4I5NKrPR3g0,7598
65
+ toil/lib/generatedEC2Lists.py,sha256=pcdygnoZLokhhihbzm3YMNtXsNZSsvrhjYFA784qeag,274723
66
+ toil/lib/humanize.py,sha256=6uXOB07rvAxO8jpIh2kPwy9bfoDu0eEUmBGz9m1chS8,1267
67
+ toil/lib/integration.py,sha256=vCFKjV-2K3T1LCZMqdgfCWDF4FAenGqTSflG_reg4vk,16163
68
+ toil/lib/io.py,sha256=NX3bm7YGsxb6p76sVnRigweFZf12pfA-oXUs23l023U,12328
69
+ toil/lib/iterables.py,sha256=gLbbxBzB0f-hhMRcCN9P-TDqNYK0myUKVCYBa9eJo-c,3459
70
+ toil/lib/memoize.py,sha256=2ikkIOXfZv7LGsoEn8i2ojYTqqNmIIBhSCfBQxySIKg,3225
71
+ toil/lib/misc.py,sha256=jCSSftkKiam_MrH9jAZKMMTBEH9CjTBiUUF8zernll0,6657
72
+ toil/lib/objects.py,sha256=3XNMtBkNcIB2EMl5cteVDkuSRKAOpnd_GhxgTGVh43M,5381
73
+ toil/lib/resources.py,sha256=KkfM3hSUwTT__Avh8jPxM0VlrXvqajGjnXScMSlqT7Y,4005
74
+ toil/lib/retry.py,sha256=JFGxvx4BK981hqo4MvKoBX1KvJIVNxQafKEYx9MVEDE,22927
75
+ toil/lib/threading.py,sha256=cdhEqrScvdtCELE0RUukXdV1nlyAlu-ya7DyVSbskrI,30921
76
+ toil/lib/throttle.py,sha256=ua21juOmGI7JZP4pXdR8-s2TpF6PpwW3sg11a2gcrbI,4955
77
+ toil/lib/aws/__init__.py,sha256=VI77J2o4IehFBpEUjS4eHmXlxEplFnKYHq6w8ZyotEk,7905
78
+ toil/lib/aws/ami.py,sha256=SD728qocULXqWZmxPslcymukG-MxfNniMsBE9d1VVcM,9341
79
+ toil/lib/aws/iam.py,sha256=6qNJ6C61XVzbuPX1p-tcnEcabCjIultrVe9MrgcME04,18550
80
+ toil/lib/aws/s3.py,sha256=accn7bSneZttfb91pZR_80gDhCgVX7Z4ZOKOwM-6u9w,1156
81
+ toil/lib/aws/session.py,sha256=xWtzP52v_Wf0hYTVnoIf0FrL-isXIgzZrwRPeW8ajnI,14543
82
+ toil/lib/aws/utils.py,sha256=CFgg4g3f6I8kIyg8_JB18xzR5yk-WHZXk7cq_NXb_aU,19738
83
+ toil/lib/encryption/__init__.py,sha256=HP19EUYJeIMdjZq11fLn_dXIGU98sIkpTxvMxvPaUSs,705
84
+ toil/lib/encryption/_dummy.py,sha256=6e2fthd6YdgFUgY0kjGb2052KLWUeXD_ejeoCTAThLU,1082
85
+ toil/lib/encryption/_nacl.py,sha256=_EL8LrF5T5DT0dhNIlyIxDB8c8irGe9nJVh1Sn7mFkA,3747
86
+ toil/lib/encryption/conftest.py,sha256=jCrRo2AtsGaO6hitm-wkNOTAU78JWSVA52E0hZdMpq8,227
87
+ toil/options/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ toil/options/common.py,sha256=fNAOlnsLD_2on6gWHV8nTVikzlx_nrhaco6hLLlRbHo,45075
89
+ toil/options/cwl.py,sha256=r2eMuOxbJaq8_mc25KLzzEjAvvWJqe2QfLHcXKidurg,13600
90
+ toil/options/runner.py,sha256=7DxJLvcMm6CLwTZnPW1f9UmQKx1vw5Sq8VaqJDLzC7g,2388
91
+ toil/options/wdl.py,sha256=PJ5qile1zus-Jwld8Sb3KmG8zzIIuYVJMj-8jmaRB6U,3167
92
+ toil/provisioners/__init__.py,sha256=Z3OV95yx77LBVRUtjX_J8r_0OSC2glAIo5y7irbB-S0,9794
93
+ toil/provisioners/abstractProvisioner.py,sha256=R3OuUV2p8GWWuRs2PbaHkjHufOLyoknUaHq4vKPVGMc,58000
94
+ toil/provisioners/clusterScaler.py,sha256=9FgnSPbn2U_FYUSJUeN67A0kdh-Yl0roi5nZLeJVr_I,64980
95
+ toil/provisioners/gceProvisioner.py,sha256=I0g5oNwsRAr3D-gimCIhk6xZZ-HB_Y3jzgOhMRGx86k,24182
96
+ toil/provisioners/node.py,sha256=RFLXufNQhjiHUO5fBfbEBd4cbtSUWsNmiGcDDodioMI,15198
97
+ toil/provisioners/aws/__init__.py,sha256=XmVkSuHGMvaMbDJ36yZHGkH5fsUJYJyi3V4R9MYw0Gs,8621
98
+ toil/provisioners/aws/awsProvisioner.py,sha256=Fd2twLvxKeDKfPw-HoxOdgtJqLajwVVJ1VqhDqt-D0I,89097
99
+ toil/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
+ toil/server/app.py,sha256=Xi8ZYs0qKsg1ISNETiYjMtt_qxrou3NuHZcx9bu3MNU,7048
101
+ toil/server/celery_app.py,sha256=PbdwRb7tY5MU4PkPgFZkq7CMiCe6LHBxw5YgcbdsKIE,663
102
+ toil/server/utils.py,sha256=hSeRcdBMBkvS3iGRtF3jB5lVNcsTXJGS-7fV8czuJ4E,21919
103
+ toil/server/wsgi_app.py,sha256=3V3xr80F4uJUzeBbTbPI1uKJ3FUcI-H_8T1eiiEM5iw,1959
104
+ toil/server/api_spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ toil/server/api_spec/workflow_execution_service.swagger.yaml,sha256=zZ2QepvbpvLROIcVIHWrcQLUwXEqGfm68fmkdrx8rw8,25377
106
+ toil/server/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ toil/server/cli/wes_cwl_runner.py,sha256=vw3KKnoe_oof6PLxiJWenHev53YwVmpzc8N9FwZMoKk,18501
108
+ toil/server/wes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ toil/server/wes/abstract_backend.py,sha256=d8IA2Fepwr9g6BU-CO3VBvODiPswsps9rPcOKUUvD8k,10202
110
+ toil/server/wes/amazon_wes_utils.py,sha256=xRrV7hiWoWVwxJykgL2HQdMf1FZg73eqEBltKXya1Fc,10287
111
+ toil/server/wes/tasks.py,sha256=DBjUUbxY6mq0H4aB8qiGhatmz6qWJWHkHPgfAqSr37w,24746
112
+ toil/server/wes/toil_backend.py,sha256=GaBhjr2evNwV07QiAiQf6GgDRGxiX1SblkLTEa7-WFo,27499
113
+ toil/test/__init__.py,sha256=HQBKUyJCEM1_kMz-aVsCKjOBZ0bT029gUlElfrE2sAE,45148
114
+ toil/test/batchSystems/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
115
+ toil/test/batchSystems/batchSystemTest.py,sha256=hMp5mmtGdWxnb4DIjCxy4m-BU9BeJ6n3w_-QF9ziYcg,55546
116
+ toil/test/batchSystems/batch_system_plugin_test.py,sha256=KUVDjbXgxopEqTC4pAAwUePc-QrThxhChyaernYVpVM,2802
117
+ toil/test/batchSystems/test_gridengine.py,sha256=kZCF7WIAmCF1LTPPWd4zC6piQr0UaKJ3kYKz5tsBal0,6353
118
+ toil/test/batchSystems/test_lsf_helper.py,sha256=JICnAPvU7HfqJ0RhIpC-IFfHLKftOAAQF2Iqc7nFs30,4697
119
+ toil/test/batchSystems/test_slurm.py,sha256=bCwVanzQf17c9IY9-bSiDAje1lHyCt2PUWUJZy9GKV4,19529
120
+ toil/test/cactus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
+ toil/test/cactus/test_cactus_integration.py,sha256=4sRlsm7b29a08HNHFUbFu_gDW36TQeTfGBvRYUXNF_U,2219
122
+ toil/test/cwl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ toil/test/cwl/alwaysfails.cwl,sha256=EWDfzxMG4WqH2YQErhIHYPVc7-1eyucEUboj8r7yVbA,210
124
+ toil/test/cwl/colon_test_output.cwl,sha256=8evFOnHvpJEPn1lBI2zuEKueMUbh2p8oSNOKl-M4Ojw,401
125
+ toil/test/cwl/colon_test_output_job.yaml,sha256=BbXFRuWsRJV6JpJAutnHywJl_AbwEcwNRszArfRecxs,72
126
+ toil/test/cwl/conditional_wf.cwl,sha256=SAtUSmD5ta-DVG0SRHpT8EtOp8ztm-6v9Vskcl09c3s,357
127
+ toil/test/cwl/conditional_wf.yaml,sha256=WsS9dlpbRUll9M56KspQdOJ8h6SASTW7eRELefa274E,24
128
+ toil/test/cwl/conftest.py,sha256=okwzv8y-qDSIz--eauonzQXxj6DxyT-u8sXIUMmjxlE,698
129
+ toil/test/cwl/cwlTest.py,sha256=t98io1NVD1LSwXRT8jzaLH97noUq5Hf2XDJQ34NZ6fc,63465
130
+ toil/test/cwl/directory_from_directory.cwl,sha256=-hjZuUs5fMpKMnbj-FZAgcns4iWsCFJV6Qh7-fsRn1I,556
131
+ toil/test/cwl/download.cwl,sha256=XQvz8or_-k6pwyhgeUeJOew0_b3BeHcF08EaalbySz4,296
132
+ toil/test/cwl/download_directory.cwl,sha256=RdPmElFeHJqXGWVqEqR5VFMmXDiJubhTcM9hIrAhKY4,535
133
+ toil/test/cwl/download_subdirectory.cwl,sha256=9xhggsaDvdA0fOUGOXWt853h1ir0KCKB4NhhAnYLKZ4,784
134
+ toil/test/cwl/echo-stderr.cwl,sha256=M-j3robw02M6PWkhbDI3Yn1GDGRDteLGMMFvfhL56mQ,342
135
+ toil/test/cwl/echo-stdout-log-dir.cwl,sha256=emXc_pJKCUI7zpN4c6WMeIRvAsvmibRA1vyHhQB3y4Y,228
136
+ toil/test/cwl/echo.cwl,sha256=1_Pvhg7RmQq3wpYUhQT6iS0IR7MN_CY8UEdBWjWcQf4,183
137
+ toil/test/cwl/echo_string.cwl,sha256=uBmj7qdRV3GFHQxbXvVeRqiOnqc2L-oHYELGGiJJC9M,845
138
+ toil/test/cwl/echo_string_scatter_capture_stdout.cwl,sha256=5FGemb98l2SP0e3ajeHfeE9-FKrmKfDzQmFixxu_kJM,1090
139
+ toil/test/cwl/file_from_directory.cwl,sha256=0SQUY6rJgqW9zhgX5RN-vjn1smDQweThAwKC5vy5fNk,536
140
+ toil/test/cwl/glob_dir.cwl,sha256=3a1VRsCTMgY0he8lxa-7OJJIeDHBry83DIEHguuIBwk,236
141
+ toil/test/cwl/load_contents.cwl,sha256=YASiGkUQPEa9dz6btNccARLI7sPppXmm5XaePIOpek8,464
142
+ toil/test/cwl/measure_default_memory.cwl,sha256=ZGVgLpnKNxOobjOEWc7EF-spCrDqhYrBHx9MjnJm2ew,252
143
+ toil/test/cwl/mpi_simple.cwl,sha256=xgsOk2yGbAHL3pwtCtxZd6_c9Lopl1xh32dO0D6-Qbc,470
144
+ toil/test/cwl/not_run_required_input.cwl,sha256=DK8CeCEw8thWiqvoRQmFQcZq6I3HLrt_7gzbYk1te-c,836
145
+ toil/test/cwl/nvidia_smi.cwl,sha256=peKLDFC9_0zEt7CoRLCQDtAE5bjfotok8Ljmn1nBVtA,474
146
+ toil/test/cwl/preemptible.cwl,sha256=BLmrYR3nZX89p1I0-8vGuE-hqKEUbfsuY-CWDcf32BY,304
147
+ toil/test/cwl/preemptible_expression.cwl,sha256=T_90Y6dBe9nDCjp8Hg4dv9xFsaWVsKSHv5nZ2mafBZ8,639
148
+ toil/test/cwl/revsort.cwl,sha256=BDAyPb1Tpkp55I_XIiZ3_7dXzQJxxkXo_2CHSk5lcEw,2023
149
+ toil/test/cwl/revsort2.cwl,sha256=LNXgxDVC2aIhPTTgOdDcKteDLmi3y3vPAFF_GdURCcQ,2024
150
+ toil/test/cwl/revtool.cwl,sha256=qzl3FHpaF41KPpxP9yhrOxUCsSm1bjsr2XXFpBZ_LkM,1301
151
+ toil/test/cwl/revtool2.cwl,sha256=CwJT3A6mmjBtneDzVDEfcYqoIerKm7A7A6UcyrVWrqo,767
152
+ toil/test/cwl/s3_secondary_file.cwl,sha256=aHxO8EwWDxJb4CzuAt3VJfbQaHPQARLs7XVJ5DtMITs,378
153
+ toil/test/cwl/scatter_duplicate_outputs.cwl,sha256=1ubeij5YQhjHe0igq5xL-Caje6gheIMfA5HKBJrBeh8,699
154
+ toil/test/cwl/seqtk_seq.cwl,sha256=uR7wlwxlNLkA_hIFglgiWGoOftQqFk4sH7Wo5zF60-c,406
155
+ toil/test/cwl/sorttool.cwl,sha256=c1fhFZ_ekTMuEAM0nikUPd2j-etPQL8MqyuSJLNadtc,1060
156
+ toil/test/cwl/stream.cwl,sha256=jtyYdmSyCeI6uoOeX5Nb_LMIXhR5Sqmu8dGSr_Y2Z8g,732
157
+ toil/test/cwl/test_filename_conflict_detection.cwl,sha256=wVrc9EXmO74tgaEe4oE-EMpmQiHIuUFbLh0-qVisVZo,699
158
+ toil/test/cwl/test_filename_conflict_detection_at_root.cwl,sha256=G3clUTFeeGZt5xPi2SNs05W7I-RT0OEN2C8xKHzQ300,695
159
+ toil/test/cwl/test_filename_conflict_resolution.cwl,sha256=sIoXi61RzCkzD1MTCoglRYAXo8xaE1JiC6irvSANK0I,717
160
+ toil/test/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ toil/test/docs/scriptsTest.py,sha256=UKtoAhBejHE7ID0LxibGSoDaHaZXCBHJlMwXqv7KD6s,5806
162
+ toil/test/jobStores/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
163
+ toil/test/jobStores/jobStoreTest.py,sha256=QEma-WTO-9kzp298LJXVUifXc1yP3OutKa3D0G7opkY,69620
164
+ toil/test/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ toil/test/lib/dockerTest.py,sha256=w9VZ7KHGz3eEdvV9McqT7NgXXWENkizubaEaiPDVeh4,15607
166
+ toil/test/lib/test_conversions.py,sha256=JSwdTRYklpofPV3VANHC7vHZ7WcpEWOZD6G9Tkjd45w,7232
167
+ toil/test/lib/test_ec2.py,sha256=p3GfCgSSLqZQ-oanHk1sdIuP1wVUwQvXKsXzWl5ow0I,4183
168
+ toil/test/lib/test_integration.py,sha256=E87W-WiOqeHbHNou2d8Nb2GOhjH4XTKL9JH8esQpL2M,4634
169
+ toil/test/lib/test_misc.py,sha256=X1o4Dw1PcbnS1Y_gTR2q4STwqRjXYjSEUy2Q1BxeijM,2766
170
+ toil/test/lib/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
+ toil/test/lib/aws/test_iam.py,sha256=2YTrL6r0WIybOBFltU0bJ4XOADT6vlRRXfbsvexjBt8,6921
172
+ toil/test/lib/aws/test_s3.py,sha256=NpYO0GnACbGpaKPwM0yeObxqBoFYJv92RUP7VdtompE,3061
173
+ toil/test/lib/aws/test_utils.py,sha256=_JI_FfpyONfLE4HduibcAPF7_Y39MUx4H6wk7KqdWw8,2253
174
+ toil/test/mesos/MesosDataStructuresTest.py,sha256=IcV-bNWJcMnij0WruhTk4RTmGROTTcU3pav5e4gHPfA,3225
175
+ toil/test/mesos/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
176
+ toil/test/mesos/helloWorld.py,sha256=xX65tKSBIKAxguBoAe-6Twp2XcBK1QEnKp5LRVImgK4,2204
177
+ toil/test/mesos/stress.py,sha256=0_-l6SvPc0qgwF0bsJgMm1-cmKx-LZ1-_4XlfghPU7s,2126
178
+ toil/test/options/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
179
+ toil/test/options/options.py,sha256=xpp0PZKilYeXwkXUBszRZSC_LziX_rPi9shsQlemuuo,1474
180
+ toil/test/provisioners/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
181
+ toil/test/provisioners/clusterScalerTest.py,sha256=-Q5epOMHynfnlNZfpVXMU48puw_G9fyLiW8Gl8Qrk5o,44463
182
+ toil/test/provisioners/clusterTest.py,sha256=rTBsPJVUtJJ3HFHPKyFiy3Tz22whisdNnZu9R5-gVv8,9658
183
+ toil/test/provisioners/gceProvisionerTest.py,sha256=sB5aPWFx0xLuvkLuJaJrd1Lc-p_MutAfkMWKHxherZI,13601
184
+ toil/test/provisioners/provisionerTest.py,sha256=_JAvTs9bjynVpRkJI0VLPHZw-Y7kHI9B1vaWR4RomKA,2179
185
+ toil/test/provisioners/restartScript.py,sha256=GodLqsIiYNxXFWQtyYHrxACI1fSUeGzcltO6qOdznj4,416
186
+ toil/test/provisioners/aws/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
187
+ toil/test/provisioners/aws/awsProvisionerTest.py,sha256=aSAfNM0DDzkJU63ZHaCBtu-dwO5wc3Cup5IQ9o4XkNM,23710
188
+ toil/test/server/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
189
+ toil/test/server/serverTest.py,sha256=4daj22UNwzWXqTTTmgjDyIFeG8Js4iv-ZmBxeyHcjhs,27553
190
+ toil/test/sort/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
191
+ toil/test/sort/restart_sort.py,sha256=A-1pWMhSIHSbtib-u1rvOFbhRqW_mQlf6dEbelFs7Q0,11358
192
+ toil/test/sort/sort.py,sha256=ty46x-3-8Gj21itM8V31HLRZN7JGLF37xPM5aIDx9dA,11187
193
+ toil/test/sort/sortTest.py,sha256=0dUZ0RCzE66bRcmOHJUD5MFg4UkSRbwhnHVkzX54wI4,12239
194
+ toil/test/src/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
195
+ toil/test/src/autoDeploymentTest.py,sha256=Oqy3j-jBeMCgu66wrxkDVUKFdqvkQ7aMj7GN6gKG7cE,23947
196
+ toil/test/src/busTest.py,sha256=HVmXGTet496PZ0f8qW6NVPz9kLZigBTo4aNWN6iTbAk,5409
197
+ toil/test/src/checkpointTest.py,sha256=LahYir7B3FNttP4OhbiYFKjxIftjTiuIXHC83xsxzNI,4464
198
+ toil/test/src/deferredFunctionTest.py,sha256=FP6VQ_eKPcSsxuhWx1n02G3Myu4D3RFUgMSN7Y2RY_8,13360
199
+ toil/test/src/dockerCheckTest.py,sha256=CuXBewb1ba4rOO3YOrmChxPvdOfJGXNcT8P47HcaY1g,4407
200
+ toil/test/src/environmentTest.py,sha256=k-WsZ3-9Xn0Vctd8tBQTPR_fVqY-f1VHC5U3_d7qdd4,4239
201
+ toil/test/src/fileStoreTest.py,sha256=7Rh9qRGEB5nBdcerRz-7QLfq47pyfS1XQSKCOaQQS3w,73186
202
+ toil/test/src/helloWorldTest.py,sha256=vPxXEYDZZuMynm_yQ5ZZPcm3AzXdYLT9bs0kP72OM2w,1727
203
+ toil/test/src/importExportFileTest.py,sha256=mlYMR8jh967KgvX37yYmI-cd_E8bcqr7_LvBhiOkAzQ,7669
204
+ toil/test/src/jobDescriptionTest.py,sha256=ops9NpnUa1aKGPrTOXU3jTwiDszCRJzHHAZzQx8bF10,4335
205
+ toil/test/src/jobEncapsulationTest.py,sha256=K1Q2m_1ZrXC6OI5ms_JSltEsGvuE1O_M5rWST6VWiBg,2463
206
+ toil/test/src/jobFileStoreTest.py,sha256=88slShZfPJgVrEP6pTwuVxPJ-cROwMzdIdgPlogdg18,8977
207
+ toil/test/src/jobServiceTest.py,sha256=EDhU86qPUfK0yMZy8Kc1CAgTFt-s3YCPFmRfGsTsoGE,17510
208
+ toil/test/src/jobTest.py,sha256=Kb-i3E-EDZQFFH4UuBQU0oduVBejeRY1zH_tlPWz6vc,27813
209
+ toil/test/src/miscTests.py,sha256=lG1wozuqyXTq5_egV0bEbHtDnjM0b5CT0VpJYGV5clI,7798
210
+ toil/test/src/promisedRequirementTest.py,sha256=Xu91RdffN5Vd0LWuIE4g4c1sc51SPB64KEhbqoU7XWY,9580
211
+ toil/test/src/promisesTest.py,sha256=HpFIDWWkEjdEA-vIAyX_Rn9oYwFOHMvSDSlOkihy-PE,2318
212
+ toil/test/src/realtimeLoggerTest.py,sha256=bvr7YDS_co48fmdKo-c0bBXn2fnzvUAFRMODNyTkvfQ,2443
213
+ toil/test/src/regularLogTest.py,sha256=T6-rU_qKczGroLnoDVuZj1xcxJHVQvk2klwhFX9vfnk,4308
214
+ toil/test/src/resourceTest.py,sha256=hE4KnAlKAAAYphSp-Edv9z3Q__jP2P3PVZGlZfPZL-0,11071
215
+ toil/test/src/restartDAGTest.py,sha256=U6xLIBtOBH-FneR1JUA03bIEBreHuKR3jxCfDum4dic,6227
216
+ toil/test/src/resumabilityTest.py,sha256=8PpAWCkgdAEvKCneOVGGaY77sxTSbPgJyN_C-qGSw-c,4183
217
+ toil/test/src/retainTempDirTest.py,sha256=vmNb2cplGoWgRQn71KcD3HdA2Fxx421SGAky_k9ibgg,4589
218
+ toil/test/src/systemTest.py,sha256=6qKhsl0k1zegb5v7D92CswSSoDGkQz9Z9nJSVN6UCmw,2271
219
+ toil/test/src/threadingTest.py,sha256=9umRwuZc2LFE3eT36Yg65XulKl0QzEkk289sn14GPbA,5229
220
+ toil/test/src/toilContextManagerTest.py,sha256=vM8AgCCghzI5GVginyyhaZZFGZF6xF42-NXl2S0quhY,3114
221
+ toil/test/src/userDefinedJobArgTypeTest.py,sha256=5PaS_418DbCAk7csGmgx3VC90mB-9Y1X116b9LSLs1w,2869
222
+ toil/test/src/workerTest.py,sha256=88Mz9ES62IijTkLdnzCxB3ZVEtLS2fxbIVlfhjI4SwI,6334
223
+ toil/test/utils/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
224
+ toil/test/utils/toilDebugTest.py,sha256=FlS8_0jKF5d-Y_g4RucRWQDJtUUM6nsjNCrjxVgqjRQ,9096
225
+ toil/test/utils/toilKillTest.py,sha256=qMYnMjeqZGxXan8k0ITaK7D80YYVmfdplFDV0LIJ0t4,3494
226
+ toil/test/utils/utilsTest.py,sha256=cHDWs_KOud1nIEQ13M5GNV_SE4rOPAtoCb43MbZD9l8,19513
227
+ toil/test/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ toil/test/wdl/wdltoil_test.py,sha256=yHLJGkEEet-aLrcAcs15iVvvWxuE4NUYs-v78DKIXqg,40105
229
+ toil/test/wdl/wdltoil_test_kubernetes.py,sha256=a45TojDEwksW7MYk1F0KzQdgXJRktQYOsq36CfpBvuo,2818
230
+ toil/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
+ toil/utils/toilClean.py,sha256=X6Fws6LVqa-ScUITMTomV5iohXa3yz_rAIFnUfXlqZU,1850
232
+ toil/utils/toilConfig.py,sha256=Ki6gGV-9d21z06u-A0meE2H0MjJUCT4mQEsMmERHn8o,1502
233
+ toil/utils/toilDebugFile.py,sha256=HdBOe6IX6xyzGjDf_ZDxCTWaeA9lFO94UexGV1oeptE,6302
234
+ toil/utils/toilDebugJob.py,sha256=K3j5wqDBzLHRGwThE_PDVN0-yKFl7xETDWXrNe6EnQc,10796
235
+ toil/utils/toilDestroyCluster.py,sha256=OvwlKgomHiLptN8GjLouBzfFCo-SyLfrRWF4sv0kPww,1416
236
+ toil/utils/toilKill.py,sha256=21zOstvFb32cwQlhMsG5Q4lPT2CSnZ7OXEK1mmyLmtk,2751
237
+ toil/utils/toilLaunchCluster.py,sha256=nKoqmbAnadoZNKx7plzyZzAgMj6yn38tu2LOQqjLNUU,12931
238
+ toil/utils/toilMain.py,sha256=Lz7dtkpE8urTRgimRjewKvbh4Xgh6l0OJRtxX203LyI,2790
239
+ toil/utils/toilRsyncCluster.py,sha256=cR-4o9KpoyBdObCwQgpAqpO30VK3gGzwHKOGyQHGQeQ,2150
240
+ toil/utils/toilServer.py,sha256=4XbyOHQHgMWWrCWj9Uz1M-jLQheV2Ju-DQ_fNdnBg1o,1178
241
+ toil/utils/toilSshCluster.py,sha256=QSz2w1vJfiBVicz3ooLqNJM_BRKrF3N6mxWdbmF9Pbo,2840
242
+ toil/utils/toilStats.py,sha256=I8ERYFA0NxYDC8meBoMkxABmVfTlvYWnOBRP8BfVGEc,25615
243
+ toil/utils/toilStatus.py,sha256=qacxW5lcguvmhUi1b4cjm1acJik0zpsP7CsUuZyX-fo,20424
244
+ toil/utils/toilUpdateEC2Instances.py,sha256=dreH9Vc2qUoc0he5AwqiFmqdOQp3tMmIfkjWm7GS5qE,1295
245
+ toil/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
+ toil/wdl/utils.py,sha256=U0TqbVTsap0VdeZjrUf4l71A7Zns-Hkso1B1Zdp2LRk,1316
247
+ toil/wdl/wdltoil.py,sha256=WQY6bJKErqjfLnXVahe8dJmDyW75qdtiwmTuH5_qRtM,239255
248
+ toil-8.0.0.dist-info/LICENSE,sha256=YVxVi652J1ZDmtC3EMP5r0EbK85-hm_pzogiULmlqUA,12862
249
+ toil-8.0.0.dist-info/METADATA,sha256=B3SObwKGhQzZW2p92CSPbw8dmSWFQP4M45MKedRkl4I,8305
250
+ toil-8.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
251
+ toil-8.0.0.dist-info/entry_points.txt,sha256=EF2yFhV2UYuJGr-OjMkUOd3RyOCgRWQbS6XJtBJ25eM,436
252
+ toil-8.0.0.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
253
+ toil-8.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,125 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: toil
3
- Version: 6.1.0a1
4
- Summary: Pipeline management software for clusters.
5
- Home-page: https://github.com/DataBiosphere/toil
6
- Author: Benedict Paten and the Toil community
7
- Author-email: toil-community@googlegroups.com
8
- License: Apache License v2.0
9
- Classifier: Development Status :: 5 - Production/Stable
10
- Classifier: Environment :: Console
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: Intended Audience :: Healthcare Industry
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: Natural Language :: English
16
- Classifier: Operating System :: MacOS :: MacOS X
17
- Classifier: Operating System :: POSIX
18
- Classifier: Operating System :: POSIX :: Linux
19
- Classifier: Programming Language :: Python :: 3.8
20
- Classifier: Programming Language :: Python :: 3.9
21
- Classifier: Programming Language :: Python :: 3.10
22
- Classifier: Programming Language :: Python :: 3.11
23
- Classifier: Topic :: Scientific/Engineering
24
- Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
25
- Classifier: Topic :: Scientific/Engineering :: Astronomy
26
- Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
27
- Classifier: Topic :: Scientific/Engineering :: Information Analysis
28
- Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
29
- Classifier: Topic :: System :: Distributed Computing
30
- Classifier: Topic :: Utilities
31
- Requires-Python: >=3.8
32
- License-File: LICENSE
33
- Requires-Dist: PyPubSub (<5,>=4.0.3)
34
- Requires-Dist: addict (<2.5,>=2.2.1)
35
- Requires-Dist: configargparse (<2,>=1.7)
36
- Requires-Dist: dill (<0.4,>=0.3.2)
37
- Requires-Dist: docker (<8,>=3.7.2)
38
- Requires-Dist: enlighten (<2,>=1.5.2)
39
- Requires-Dist: psutil (<6,>=3.0.1)
40
- Requires-Dist: python-dateutil
41
- Requires-Dist: pytz (>=2012)
42
- Requires-Dist: pyyaml (<7,>=6)
43
- Requires-Dist: requests (<3,>=2)
44
- Requires-Dist: ruamel.yaml.string (>=0.1.1)
45
- Requires-Dist: ruamel.yaml (>=0.15)
46
- Requires-Dist: typing-extensions (<5,>=4.6.2)
47
- Requires-Dist: urllib3 (<3,>=1.26.0)
48
- Provides-Extra: all
49
- Requires-Dist: CacheControl[filecache] ; extra == 'all'
50
- Requires-Dist: apache-libcloud (<3,>=2.2.1) ; extra == 'all'
51
- Requires-Dist: boto3-stubs[boto3,iam,s3,sdb,sts] (<2,>=1.28.3.post2) ; extra == 'all'
52
- Requires-Dist: boto (<3,>=2.48.0) ; extra == 'all'
53
- Requires-Dist: celery (<6,>=5.1.0) ; extra == 'all'
54
- Requires-Dist: connexion[swagger-ui] (<3,>=2.10.0) ; extra == 'all'
55
- Requires-Dist: cwltool (==3.1.20240112164112) ; extra == 'all'
56
- Requires-Dist: flask-cors (==4.0.0) ; extra == 'all'
57
- Requires-Dist: flask (<3,>=2.0) ; extra == 'all'
58
- Requires-Dist: galaxy-tool-util (<23) ; extra == 'all'
59
- Requires-Dist: galaxy-util (<23) ; extra == 'all'
60
- Requires-Dist: google-auth (<3,>=2.18.1) ; extra == 'all'
61
- Requires-Dist: google-cloud-storage (<=2.8.0,>=2) ; extra == 'all'
62
- Requires-Dist: gunicorn (==21.2.0) ; extra == 'all'
63
- Requires-Dist: idna (>=2) ; extra == 'all'
64
- Requires-Dist: kubernetes-stubs (==v22.6.0post1) ; extra == 'all'
65
- Requires-Dist: kubernetes (<22,>=12.0.1) ; extra == 'all'
66
- Requires-Dist: miniwdl (==1.11.1) ; extra == 'all'
67
- Requires-Dist: moto (<5,>=4.1.11) ; extra == 'all'
68
- Requires-Dist: mypy-boto3-iam (<2,>=1.28.3.post2) ; extra == 'all'
69
- Requires-Dist: networkx (!=2.8.1,<4) ; extra == 'all'
70
- Requires-Dist: pynacl (<2,>=1.4.0) ; extra == 'all'
71
- Requires-Dist: ruamel.yaml.clib (>=0.2.6) ; extra == 'all'
72
- Requires-Dist: ruamel.yaml (<0.18.4,>=0.15) ; extra == 'all'
73
- Requires-Dist: ruamel.yaml (<=0.18.3,>=0.15) ; extra == 'all'
74
- Requires-Dist: schema-salad (<9,>=8.4.20230128170514) ; extra == 'all'
75
- Requires-Dist: types-PyYAML ; extra == 'all'
76
- Requires-Dist: types-urllib3 ; extra == 'all'
77
- Requires-Dist: wdlparse (==0.1.0) ; extra == 'all'
78
- Requires-Dist: werkzeug (<3,>=2.0) ; extra == 'all'
79
- Requires-Dist: wes-service (<5,>=4.0.0) ; extra == 'all'
80
- Requires-Dist: pymesos (<0.4,>=0.3.15) ; (python_version < "3.11") and extra == 'all'
81
- Requires-Dist: graphlib-backport (==1.0) ; (python_version < "3.9") and extra == 'all'
82
- Provides-Extra: aws
83
- Requires-Dist: boto3-stubs[boto3,iam,s3,sdb,sts] (<2,>=1.28.3.post2) ; extra == 'aws'
84
- Requires-Dist: boto (<3,>=2.48.0) ; extra == 'aws'
85
- Requires-Dist: moto (<5,>=4.1.11) ; extra == 'aws'
86
- Requires-Dist: mypy-boto3-iam (<2,>=1.28.3.post2) ; extra == 'aws'
87
- Provides-Extra: cwl
88
- Requires-Dist: CacheControl[filecache] ; extra == 'cwl'
89
- Requires-Dist: cwltool (==3.1.20240112164112) ; extra == 'cwl'
90
- Requires-Dist: galaxy-tool-util (<23) ; extra == 'cwl'
91
- Requires-Dist: galaxy-util (<23) ; extra == 'cwl'
92
- Requires-Dist: networkx (!=2.8.1,<4) ; extra == 'cwl'
93
- Requires-Dist: ruamel.yaml.clib (>=0.2.6) ; extra == 'cwl'
94
- Requires-Dist: ruamel.yaml (<=0.18.3,>=0.15) ; extra == 'cwl'
95
- Requires-Dist: schema-salad (<9,>=8.4.20230128170514) ; extra == 'cwl'
96
- Provides-Extra: encryption
97
- Requires-Dist: pynacl (<2,>=1.4.0) ; extra == 'encryption'
98
- Provides-Extra: google
99
- Requires-Dist: apache-libcloud (<3,>=2.2.1) ; extra == 'google'
100
- Requires-Dist: google-auth (<3,>=2.18.1) ; extra == 'google'
101
- Requires-Dist: google-cloud-storage (<=2.8.0,>=2) ; extra == 'google'
102
- Provides-Extra: htcondor
103
- Requires-Dist: htcondor (<11,>=10.2.0.post1) ; (sys_platform!="darwin") and extra == 'htcondor'
104
- Provides-Extra: kubernetes
105
- Requires-Dist: idna (>=2) ; extra == 'kubernetes'
106
- Requires-Dist: kubernetes-stubs (==v22.6.0post1) ; extra == 'kubernetes'
107
- Requires-Dist: kubernetes (<22,>=12.0.1) ; extra == 'kubernetes'
108
- Requires-Dist: types-PyYAML ; extra == 'kubernetes'
109
- Requires-Dist: types-urllib3 ; extra == 'kubernetes'
110
- Provides-Extra: mesos
111
- Requires-Dist: pymesos (<0.4,>=0.3.15) ; (python_version < "3.11") and extra == 'mesos'
112
- Provides-Extra: server
113
- Requires-Dist: celery (<6,>=5.1.0) ; extra == 'server'
114
- Requires-Dist: connexion[swagger-ui] (<3,>=2.10.0) ; extra == 'server'
115
- Requires-Dist: flask-cors (==4.0.0) ; extra == 'server'
116
- Requires-Dist: flask (<3,>=2.0) ; extra == 'server'
117
- Requires-Dist: gunicorn (==21.2.0) ; extra == 'server'
118
- Requires-Dist: ruamel.yaml (<0.18.4,>=0.15) ; extra == 'server'
119
- Requires-Dist: werkzeug (<3,>=2.0) ; extra == 'server'
120
- Requires-Dist: wes-service (<5,>=4.0.0) ; extra == 'server'
121
- Provides-Extra: wdl
122
- Requires-Dist: miniwdl (==1.11.1) ; extra == 'wdl'
123
- Requires-Dist: wdlparse (==0.1.0) ; extra == 'wdl'
124
- Requires-Dist: graphlib-backport (==1.0) ; (python_version < "3.9") and extra == 'wdl'
125
-