toil 7.0.0__tar.gz → 8.0.0__tar.gz

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 (291) hide show
  1. {toil-7.0.0 → toil-8.0.0}/PKG-INFO +37 -22
  2. {toil-7.0.0 → toil-8.0.0}/requirements-cwl.txt +2 -1
  3. {toil-7.0.0 → toil-8.0.0}/requirements-dev.txt +9 -9
  4. toil-8.0.0/requirements-htcondor.txt +1 -0
  5. {toil-7.0.0 → toil-8.0.0}/requirements-kubernetes.txt +1 -1
  6. toil-8.0.0/requirements-server.txt +8 -0
  7. {toil-7.0.0 → toil-8.0.0}/requirements-wdl.txt +1 -1
  8. {toil-7.0.0 → toil-8.0.0}/requirements.txt +2 -1
  9. {toil-7.0.0 → toil-8.0.0}/setup.py +67 -52
  10. {toil-7.0.0 → toil-8.0.0}/src/toil/__init__.py +121 -83
  11. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/__init__.py +1 -0
  12. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/abstractBatchSystem.py +137 -77
  13. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/abstractGridEngineBatchSystem.py +211 -101
  14. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/awsBatch.py +237 -128
  15. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/cleanup_support.py +22 -16
  16. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/contained_executor.py +30 -26
  17. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/gridengine.py +85 -49
  18. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/htcondor.py +164 -87
  19. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/kubernetes.py +622 -386
  20. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/local_support.py +17 -12
  21. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/lsf.py +132 -79
  22. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/lsfHelper.py +13 -11
  23. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/mesos/__init__.py +41 -29
  24. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/mesos/batchSystem.py +288 -149
  25. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/mesos/executor.py +77 -49
  26. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/mesos/test/__init__.py +31 -23
  27. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/options.py +38 -29
  28. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/registry.py +53 -19
  29. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/singleMachine.py +293 -123
  30. toil-8.0.0/src/toil/batchSystems/slurm.py +856 -0
  31. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/torque.py +46 -32
  32. {toil-7.0.0 → toil-8.0.0}/src/toil/bus.py +141 -73
  33. {toil-7.0.0 → toil-8.0.0}/src/toil/common.py +630 -359
  34. {toil-7.0.0 → toil-8.0.0}/src/toil/cwl/__init__.py +1 -1
  35. {toil-7.0.0 → toil-8.0.0}/src/toil/cwl/cwltoil.py +1114 -532
  36. {toil-7.0.0 → toil-8.0.0}/src/toil/cwl/utils.py +17 -22
  37. {toil-7.0.0 → toil-8.0.0}/src/toil/deferred.py +62 -41
  38. {toil-7.0.0 → toil-8.0.0}/src/toil/exceptions.py +5 -3
  39. {toil-7.0.0 → toil-8.0.0}/src/toil/fileStores/__init__.py +5 -5
  40. {toil-7.0.0 → toil-8.0.0}/src/toil/fileStores/abstractFileStore.py +88 -57
  41. {toil-7.0.0 → toil-8.0.0}/src/toil/fileStores/cachingFileStore.py +711 -247
  42. {toil-7.0.0 → toil-8.0.0}/src/toil/fileStores/nonCachingFileStore.py +113 -75
  43. {toil-7.0.0 → toil-8.0.0}/src/toil/job.py +988 -315
  44. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/abstractJobStore.py +387 -243
  45. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/aws/jobStore.py +727 -403
  46. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/aws/utils.py +161 -109
  47. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/conftest.py +1 -0
  48. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/fileJobStore.py +289 -151
  49. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/googleJobStore.py +137 -70
  50. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/utils.py +36 -15
  51. {toil-7.0.0 → toil-8.0.0}/src/toil/leader.py +614 -269
  52. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/accelerators.py +115 -18
  53. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/aws/__init__.py +55 -28
  54. toil-8.0.0/src/toil/lib/aws/ami.py +226 -0
  55. toil-8.0.0/src/toil/lib/aws/iam.py +485 -0
  56. toil-8.0.0/src/toil/lib/aws/s3.py +31 -0
  57. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/aws/session.py +193 -58
  58. toil-8.0.0/src/toil/lib/aws/utils.py +502 -0
  59. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/bioio.py +13 -5
  60. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/compatibility.py +11 -6
  61. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/conversions.py +83 -49
  62. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/docker.py +131 -103
  63. toil-8.0.0/src/toil/lib/ec2.py +680 -0
  64. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/ec2nodes.py +174 -106
  65. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/encryption/_dummy.py +5 -3
  66. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/encryption/_nacl.py +10 -6
  67. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/encryption/conftest.py +1 -0
  68. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/exceptions.py +26 -7
  69. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/expando.py +4 -2
  70. toil-8.0.0/src/toil/lib/ftp_utils.py +217 -0
  71. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/generatedEC2Lists.py +127 -19
  72. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/humanize.py +6 -2
  73. toil-8.0.0/src/toil/lib/integration.py +341 -0
  74. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/io.py +99 -11
  75. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/iterables.py +4 -2
  76. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/memoize.py +12 -8
  77. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/misc.py +65 -18
  78. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/objects.py +2 -2
  79. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/resources.py +19 -7
  80. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/retry.py +115 -77
  81. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/threading.py +282 -80
  82. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/throttle.py +15 -14
  83. toil-8.0.0/src/toil/options/common.py +1172 -0
  84. {toil-7.0.0 → toil-8.0.0}/src/toil/options/cwl.py +175 -90
  85. toil-8.0.0/src/toil/options/runner.py +50 -0
  86. toil-8.0.0/src/toil/options/wdl.py +88 -0
  87. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/__init__.py +111 -46
  88. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/abstractProvisioner.py +322 -157
  89. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/aws/__init__.py +62 -30
  90. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/aws/awsProvisioner.py +980 -627
  91. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/clusterScaler.py +541 -279
  92. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/gceProvisioner.py +282 -179
  93. {toil-7.0.0 → toil-8.0.0}/src/toil/provisioners/node.py +147 -79
  94. {toil-7.0.0 → toil-8.0.0}/src/toil/realtimeLogger.py +34 -22
  95. {toil-7.0.0 → toil-8.0.0}/src/toil/resource.py +137 -75
  96. toil-8.0.0/src/toil/server/app.py +209 -0
  97. {toil-7.0.0 → toil-8.0.0}/src/toil/server/celery_app.py +3 -1
  98. {toil-7.0.0 → toil-8.0.0}/src/toil/server/cli/wes_cwl_runner.py +82 -53
  99. {toil-7.0.0 → toil-8.0.0}/src/toil/server/utils.py +54 -28
  100. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wes/abstract_backend.py +64 -26
  101. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wes/amazon_wes_utils.py +21 -15
  102. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wes/tasks.py +121 -63
  103. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wes/toil_backend.py +142 -107
  104. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wsgi_app.py +4 -3
  105. {toil-7.0.0 → toil-8.0.0}/src/toil/serviceManager.py +58 -22
  106. {toil-7.0.0 → toil-8.0.0}/src/toil/statsAndLogging.py +148 -64
  107. {toil-7.0.0 → toil-8.0.0}/src/toil/test/__init__.py +263 -179
  108. {toil-7.0.0 → toil-8.0.0}/src/toil/test/batchSystems/batchSystemTest.py +438 -195
  109. {toil-7.0.0 → toil-8.0.0}/src/toil/test/batchSystems/batch_system_plugin_test.py +18 -7
  110. toil-8.0.0/src/toil/test/batchSystems/test_gridengine.py +173 -0
  111. toil-8.0.0/src/toil/test/batchSystems/test_lsf_helper.py +83 -0
  112. {toil-7.0.0 → toil-8.0.0}/src/toil/test/batchSystems/test_slurm.py +93 -47
  113. toil-8.0.0/src/toil/test/cactus/test_cactus_integration.py +56 -0
  114. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/cwlTest.py +271 -71
  115. toil-8.0.0/src/toil/test/cwl/measure_default_memory.cwl +12 -0
  116. toil-8.0.0/src/toil/test/cwl/not_run_required_input.cwl +29 -0
  117. toil-8.0.0/src/toil/test/cwl/scatter_duplicate_outputs.cwl +40 -0
  118. {toil-7.0.0 → toil-8.0.0}/src/toil/test/docs/scriptsTest.py +60 -34
  119. {toil-7.0.0 → toil-8.0.0}/src/toil/test/jobStores/jobStoreTest.py +412 -235
  120. toil-8.0.0/src/toil/test/lib/aws/test_iam.py +197 -0
  121. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/aws/test_s3.py +16 -9
  122. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/aws/test_utils.py +5 -6
  123. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/dockerTest.py +118 -141
  124. toil-8.0.0/src/toil/test/lib/test_conversions.py +211 -0
  125. toil-8.0.0/src/toil/test/lib/test_ec2.py +104 -0
  126. toil-8.0.0/src/toil/test/lib/test_integration.py +104 -0
  127. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/test_misc.py +12 -5
  128. {toil-7.0.0 → toil-8.0.0}/src/toil/test/mesos/MesosDataStructuresTest.py +23 -10
  129. {toil-7.0.0 → toil-8.0.0}/src/toil/test/mesos/helloWorld.py +7 -6
  130. {toil-7.0.0 → toil-8.0.0}/src/toil/test/mesos/stress.py +25 -20
  131. {toil-7.0.0 → toil-8.0.0}/src/toil/test/options/options.py +7 -2
  132. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/aws/awsProvisionerTest.py +293 -140
  133. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/clusterScalerTest.py +440 -250
  134. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/clusterTest.py +81 -42
  135. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/gceProvisionerTest.py +174 -100
  136. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/provisionerTest.py +25 -13
  137. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/restartScript.py +5 -4
  138. {toil-7.0.0 → toil-8.0.0}/src/toil/test/server/serverTest.py +188 -141
  139. {toil-7.0.0 → toil-8.0.0}/src/toil/test/sort/restart_sort.py +137 -68
  140. {toil-7.0.0 → toil-8.0.0}/src/toil/test/sort/sort.py +134 -66
  141. {toil-7.0.0 → toil-8.0.0}/src/toil/test/sort/sortTest.py +91 -49
  142. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/autoDeploymentTest.py +140 -100
  143. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/busTest.py +20 -18
  144. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/checkpointTest.py +8 -2
  145. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/deferredFunctionTest.py +49 -35
  146. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/dockerCheckTest.py +33 -26
  147. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/environmentTest.py +20 -10
  148. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/fileStoreTest.py +538 -271
  149. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/helloWorldTest.py +7 -4
  150. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/importExportFileTest.py +61 -31
  151. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/jobDescriptionTest.py +32 -17
  152. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/jobEncapsulationTest.py +2 -0
  153. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/jobFileStoreTest.py +74 -50
  154. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/jobServiceTest.py +187 -73
  155. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/jobTest.py +120 -70
  156. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/miscTests.py +19 -18
  157. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/promisedRequirementTest.py +82 -36
  158. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/promisesTest.py +7 -6
  159. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/realtimeLoggerTest.py +6 -6
  160. toil-8.0.0/src/toil/test/src/regularLogTest.py +134 -0
  161. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/resourceTest.py +80 -49
  162. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/restartDAGTest.py +36 -22
  163. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/resumabilityTest.py +9 -2
  164. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/retainTempDirTest.py +45 -14
  165. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/systemTest.py +12 -8
  166. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/threadingTest.py +44 -25
  167. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/toilContextManagerTest.py +10 -7
  168. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/userDefinedJobArgTypeTest.py +8 -5
  169. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/workerTest.py +33 -16
  170. {toil-7.0.0 → toil-8.0.0}/src/toil/test/utils/toilDebugTest.py +70 -58
  171. {toil-7.0.0 → toil-8.0.0}/src/toil/test/utils/toilKillTest.py +4 -5
  172. {toil-7.0.0 → toil-8.0.0}/src/toil/test/utils/utilsTest.py +239 -102
  173. toil-8.0.0/src/toil/test/wdl/wdltoil_test.py +1012 -0
  174. {toil-7.0.0 → toil-8.0.0}/src/toil/test/wdl/wdltoil_test_kubernetes.py +37 -23
  175. {toil-7.0.0 → toil-8.0.0}/src/toil/toilState.py +52 -26
  176. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilConfig.py +13 -4
  177. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilDebugFile.py +44 -27
  178. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilDebugJob.py +85 -25
  179. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilDestroyCluster.py +11 -6
  180. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilKill.py +8 -3
  181. toil-8.0.0/src/toil/utils/toilLaunchCluster.py +351 -0
  182. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilMain.py +37 -16
  183. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilRsyncCluster.py +27 -14
  184. toil-8.0.0/src/toil/utils/toilSshCluster.py +85 -0
  185. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilStats.py +75 -36
  186. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilStatus.py +226 -119
  187. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilUpdateEC2Instances.py +3 -1
  188. toil-8.0.0/src/toil/version.py +14 -0
  189. {toil-7.0.0 → toil-8.0.0}/src/toil/wdl/utils.py +5 -5
  190. toil-8.0.0/src/toil/wdl/wdltoil.py +5665 -0
  191. {toil-7.0.0 → toil-8.0.0}/src/toil/worker.py +269 -128
  192. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/PKG-INFO +37 -22
  193. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/SOURCES.txt +9 -0
  194. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/requires.txt +23 -18
  195. toil-7.0.0/requirements-htcondor.txt +0 -1
  196. toil-7.0.0/requirements-server.txt +0 -8
  197. toil-7.0.0/src/toil/batchSystems/slurm.py +0 -504
  198. toil-7.0.0/src/toil/lib/aws/ami.py +0 -191
  199. toil-7.0.0/src/toil/lib/aws/iam.py +0 -309
  200. toil-7.0.0/src/toil/lib/aws/utils.py +0 -482
  201. toil-7.0.0/src/toil/lib/ec2.py +0 -567
  202. toil-7.0.0/src/toil/options/common.py +0 -739
  203. toil-7.0.0/src/toil/options/wdl.py +0 -37
  204. toil-7.0.0/src/toil/server/app.py +0 -143
  205. toil-7.0.0/src/toil/test/batchSystems/test_lsf_helper.py +0 -74
  206. toil-7.0.0/src/toil/test/cactus/test_cactus_integration.py +0 -58
  207. toil-7.0.0/src/toil/test/lib/aws/test_iam.py +0 -129
  208. toil-7.0.0/src/toil/test/lib/test_conversions.py +0 -213
  209. toil-7.0.0/src/toil/test/lib/test_ec2.py +0 -96
  210. toil-7.0.0/src/toil/test/src/regularLogTest.py +0 -100
  211. toil-7.0.0/src/toil/test/wdl/wdltoil_test.py +0 -371
  212. toil-7.0.0/src/toil/utils/toilLaunchCluster.py +0 -245
  213. toil-7.0.0/src/toil/utils/toilSshCluster.py +0 -62
  214. toil-7.0.0/src/toil/version.py +0 -14
  215. toil-7.0.0/src/toil/wdl/wdltoil.py +0 -3204
  216. {toil-7.0.0 → toil-8.0.0}/LICENSE +0 -0
  217. {toil-7.0.0 → toil-8.0.0}/MANIFEST.in +0 -0
  218. {toil-7.0.0 → toil-8.0.0}/README.rst +0 -0
  219. {toil-7.0.0 → toil-8.0.0}/requirements-aws.txt +0 -0
  220. {toil-7.0.0 → toil-8.0.0}/requirements-encryption.txt +0 -0
  221. {toil-7.0.0 → toil-8.0.0}/requirements-google.txt +0 -0
  222. {toil-7.0.0 → toil-8.0.0}/requirements-mesos.txt +0 -0
  223. {toil-7.0.0 → toil-8.0.0}/setup.cfg +0 -0
  224. {toil-7.0.0 → toil-8.0.0}/src/toil/batchSystems/mesos/conftest.py +0 -0
  225. {toil-7.0.0 → toil-8.0.0}/src/toil/cwl/conftest.py +0 -0
  226. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/__init__.py +0 -0
  227. {toil-7.0.0 → toil-8.0.0}/src/toil/jobStores/aws/__init__.py +0 -0
  228. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/__init__.py +0 -0
  229. {toil-7.0.0 → toil-8.0.0}/src/toil/lib/encryption/__init__.py +0 -0
  230. {toil-7.0.0 → toil-8.0.0}/src/toil/options/__init__.py +0 -0
  231. {toil-7.0.0 → toil-8.0.0}/src/toil/server/__init__.py +0 -0
  232. {toil-7.0.0 → toil-8.0.0}/src/toil/server/api_spec/__init__.py +0 -0
  233. {toil-7.0.0 → toil-8.0.0}/src/toil/server/api_spec/workflow_execution_service.swagger.yaml +0 -0
  234. {toil-7.0.0 → toil-8.0.0}/src/toil/server/cli/__init__.py +0 -0
  235. {toil-7.0.0 → toil-8.0.0}/src/toil/server/wes/__init__.py +0 -0
  236. {toil-7.0.0 → toil-8.0.0}/src/toil/test/batchSystems/__init__.py +0 -0
  237. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cactus/__init__.py +0 -0
  238. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/__init__.py +0 -0
  239. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/alwaysfails.cwl +0 -0
  240. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/colon_test_output.cwl +0 -0
  241. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/colon_test_output_job.yaml +0 -0
  242. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/conditional_wf.cwl +0 -0
  243. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/conditional_wf.yaml +0 -0
  244. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/conftest.py +0 -0
  245. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/directory_from_directory.cwl +0 -0
  246. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/download.cwl +0 -0
  247. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/download_directory.cwl +0 -0
  248. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/download_subdirectory.cwl +0 -0
  249. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/echo-stderr.cwl +0 -0
  250. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/echo-stdout-log-dir.cwl +0 -0
  251. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/echo.cwl +0 -0
  252. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/echo_string.cwl +0 -0
  253. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/echo_string_scatter_capture_stdout.cwl +0 -0
  254. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/file_from_directory.cwl +0 -0
  255. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/glob_dir.cwl +0 -0
  256. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/load_contents.cwl +0 -0
  257. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/mpi_simple.cwl +0 -0
  258. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/nvidia_smi.cwl +0 -0
  259. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/preemptible.cwl +0 -0
  260. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/preemptible_expression.cwl +0 -0
  261. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/revsort.cwl +0 -0
  262. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/revsort2.cwl +0 -0
  263. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/revtool.cwl +0 -0
  264. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/revtool2.cwl +0 -0
  265. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/s3_secondary_file.cwl +0 -0
  266. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/seqtk_seq.cwl +0 -0
  267. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/sorttool.cwl +0 -0
  268. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/stream.cwl +0 -0
  269. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/test_filename_conflict_detection.cwl +0 -0
  270. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/test_filename_conflict_detection_at_root.cwl +0 -0
  271. {toil-7.0.0 → toil-8.0.0}/src/toil/test/cwl/test_filename_conflict_resolution.cwl +0 -0
  272. {toil-7.0.0 → toil-8.0.0}/src/toil/test/docs/__init__.py +0 -0
  273. {toil-7.0.0 → toil-8.0.0}/src/toil/test/jobStores/__init__.py +0 -0
  274. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/__init__.py +0 -0
  275. {toil-7.0.0 → toil-8.0.0}/src/toil/test/lib/aws/__init__.py +0 -0
  276. {toil-7.0.0 → toil-8.0.0}/src/toil/test/mesos/__init__.py +0 -0
  277. {toil-7.0.0 → toil-8.0.0}/src/toil/test/options/__init__.py +0 -0
  278. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/__init__.py +0 -0
  279. {toil-7.0.0 → toil-8.0.0}/src/toil/test/provisioners/aws/__init__.py +0 -0
  280. {toil-7.0.0 → toil-8.0.0}/src/toil/test/server/__init__.py +0 -0
  281. {toil-7.0.0 → toil-8.0.0}/src/toil/test/sort/__init__.py +0 -0
  282. {toil-7.0.0 → toil-8.0.0}/src/toil/test/src/__init__.py +0 -0
  283. {toil-7.0.0 → toil-8.0.0}/src/toil/test/utils/__init__.py +0 -0
  284. {toil-7.0.0 → toil-8.0.0}/src/toil/test/wdl/__init__.py +0 -0
  285. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/__init__.py +0 -0
  286. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilClean.py +0 -0
  287. {toil-7.0.0 → toil-8.0.0}/src/toil/utils/toilServer.py +0 -0
  288. {toil-7.0.0 → toil-8.0.0}/src/toil/wdl/__init__.py +0 -0
  289. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/dependency_links.txt +0 -0
  290. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/entry_points.txt +0 -0
  291. {toil-7.0.0 → toil-8.0.0}/src/toil.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: toil
3
- Version: 7.0.0
3
+ Version: 8.0.0
4
4
  Summary: Pipeline management software for clusters.
5
5
  Home-page: https://github.com/DataBiosphere/toil
6
6
  Author: Benedict Paten and the Toil community
@@ -16,10 +16,11 @@ Classifier: Natural Language :: English
16
16
  Classifier: Operating System :: MacOS :: MacOS X
17
17
  Classifier: Operating System :: POSIX
18
18
  Classifier: Operating System :: POSIX :: Linux
19
- Classifier: Programming Language :: Python :: 3.8
20
19
  Classifier: Programming Language :: Python :: 3.9
21
20
  Classifier: Programming Language :: Python :: 3.10
22
21
  Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
23
24
  Classifier: Topic :: Scientific/Engineering
24
25
  Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
25
26
  Classifier: Topic :: Scientific/Engineering :: Astronomy
@@ -28,7 +29,7 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
28
29
  Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
29
30
  Classifier: Topic :: System :: Distributed Computing
30
31
  Classifier: Topic :: Utilities
31
- Requires-Python: >=3.8
32
+ Requires-Python: >=3.9
32
33
  Description-Content-Type: text/x-rst
33
34
  License-File: LICENSE
34
35
  Requires-Dist: dill<0.4,>=0.3.2
@@ -36,9 +37,10 @@ Requires-Dist: requests<=2.31.0
36
37
  Requires-Dist: docker<8,>=6.1.0
37
38
  Requires-Dist: urllib3<3,>=1.26.0
38
39
  Requires-Dist: python-dateutil
39
- Requires-Dist: psutil<6,>=3.0.1
40
+ Requires-Dist: psutil<7,>=6.1.0
40
41
  Requires-Dist: PyPubSub<5,>=4.0.3
41
42
  Requires-Dist: addict<2.5,>=2.2.1
43
+ Requires-Dist: backports.zoneinfo[tzdata]; python_version < "3.9"
42
44
  Requires-Dist: enlighten<2,>=1.5.2
43
45
  Requires-Dist: configargparse<2,>=1.7
44
46
  Requires-Dist: ruamel.yaml>=0.15
@@ -52,7 +54,7 @@ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
52
54
  Requires-Dist: moto<6,>=5.0.3; extra == "aws"
53
55
  Requires-Dist: ec2_metadata<3; extra == "aws"
54
56
  Provides-Extra: cwl
55
- Requires-Dist: cwltool==3.1.20240508115724; extra == "cwl"
57
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "cwl"
56
58
  Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
57
59
  Requires-Dist: galaxy-tool-util<25; extra == "cwl"
58
60
  Requires-Dist: galaxy-util<25; extra == "cwl"
@@ -60,6 +62,7 @@ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
60
62
  Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
61
63
  Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
62
64
  Requires-Dist: CacheControl[filecache]; extra == "cwl"
65
+ Requires-Dist: cwl-utils>=0.36; extra == "cwl"
63
66
  Provides-Extra: encryption
64
67
  Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
65
68
  Provides-Extra: google
@@ -67,26 +70,26 @@ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "google"
67
70
  Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
68
71
  Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
69
72
  Provides-Extra: kubernetes
70
- Requires-Dist: kubernetes<22,>=12.0.1; extra == "kubernetes"
73
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "kubernetes"
71
74
  Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
72
75
  Requires-Dist: types-urllib3; extra == "kubernetes"
73
76
  Requires-Dist: types-PyYAML; extra == "kubernetes"
74
77
  Requires-Dist: idna>=2; extra == "kubernetes"
75
78
  Provides-Extra: wdl
76
- Requires-Dist: miniwdl==1.12.0; extra == "wdl"
79
+ Requires-Dist: miniwdl==1.12.1; extra == "wdl"
77
80
  Requires-Dist: wdlparse==0.1.0; extra == "wdl"
78
81
  Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
79
82
  Provides-Extra: server
80
- Requires-Dist: connexion[swagger-ui]<3,>=2.10.0; extra == "server"
81
- Requires-Dist: flask<3,>=2.0; extra == "server"
82
- Requires-Dist: werkzeug<3,>=2.0; extra == "server"
83
- Requires-Dist: flask-cors==4.0.1; extra == "server"
84
- Requires-Dist: gunicorn==22.0.0; 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"
85
88
  Requires-Dist: celery<6,>=5.1.0; extra == "server"
86
89
  Requires-Dist: wes-service<5,>=4.0.0; extra == "server"
87
90
  Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "server"
88
91
  Provides-Extra: htcondor
89
- Requires-Dist: htcondor<11,>=10.2.0.post1; sys_platform != "darwin" and extra == "htcondor"
92
+ Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
90
93
  Provides-Extra: mesos
91
94
  Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "mesos"
92
95
  Provides-Extra: all
@@ -95,7 +98,7 @@ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
95
98
  Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
96
99
  Requires-Dist: moto<6,>=5.0.3; extra == "all"
97
100
  Requires-Dist: ec2_metadata<3; extra == "all"
98
- Requires-Dist: cwltool==3.1.20240508115724; extra == "all"
101
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "all"
99
102
  Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
100
103
  Requires-Dist: galaxy-tool-util<25; extra == "all"
101
104
  Requires-Dist: galaxy-util<25; extra == "all"
@@ -103,27 +106,39 @@ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
103
106
  Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
104
107
  Requires-Dist: networkx!=2.8.1,<4; extra == "all"
105
108
  Requires-Dist: CacheControl[filecache]; extra == "all"
109
+ Requires-Dist: cwl-utils>=0.36; extra == "all"
106
110
  Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
107
111
  Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "all"
108
112
  Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
109
113
  Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
110
- Requires-Dist: kubernetes<22,>=12.0.1; extra == "all"
114
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "all"
111
115
  Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
112
116
  Requires-Dist: types-urllib3; extra == "all"
113
117
  Requires-Dist: types-PyYAML; extra == "all"
114
118
  Requires-Dist: idna>=2; extra == "all"
115
- Requires-Dist: miniwdl==1.12.0; extra == "all"
119
+ Requires-Dist: miniwdl==1.12.1; extra == "all"
116
120
  Requires-Dist: wdlparse==0.1.0; extra == "all"
117
121
  Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
118
- Requires-Dist: connexion[swagger-ui]<3,>=2.10.0; extra == "all"
119
- Requires-Dist: flask<3,>=2.0; extra == "all"
120
- Requires-Dist: werkzeug<3,>=2.0; extra == "all"
121
- Requires-Dist: flask-cors==4.0.1; extra == "all"
122
- Requires-Dist: gunicorn==22.0.0; 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"
123
127
  Requires-Dist: celery<6,>=5.1.0; extra == "all"
124
128
  Requires-Dist: wes-service<5,>=4.0.0; extra == "all"
125
129
  Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "all"
126
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
127
142
 
128
143
  .. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
129
144
  :alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
@@ -1,4 +1,4 @@
1
- cwltool==3.1.20240508115724
1
+ cwltool==3.1.20250110105449
2
2
  schema-salad>=8.4.20230128170514,<9
3
3
  galaxy-tool-util<25
4
4
  galaxy-util<25
@@ -6,3 +6,4 @@ ruamel.yaml>=0.15,<=0.19
6
6
  ruamel.yaml.clib>=0.2.6
7
7
  networkx!=2.8.1,<4
8
8
  CacheControl[filecache]
9
+ cwl-utils>=0.36
@@ -1,24 +1,23 @@
1
1
  pytest>=6.2.1,<9
2
- pytest-cov>=2.12.1,<6
2
+ pytest-cov>=2.12.1,<7
3
3
  pytest-timeout>=1.4.2,<3
4
4
  stubserver>=1.1,<2
5
- setuptools>=65.5.1,<70
6
- sphinx>=7,<8
7
- sphinx-autoapi>=3,<4
5
+ setuptools>=65.5.1,<76
6
+ sphinx>=7,<9
7
+ sphinx-autoapi>=3.2.1,<4
8
8
  astroid>=3,<4
9
- sphinx-autodoc-typehints>=1.24.0,<3
9
+ sphinx-autodoc-typehints>=1.24.0,<4
10
10
  sphinxcontrib-autoprogram==0.1.9
11
11
  cwltest>=2.2.20211116163652
12
- mypy==1.10.0
12
+ mypy==1.15.0
13
13
  types-aws-xray-sdk
14
- types-boto<2.49.18.20240205
14
+ types-boto<2.49.18.20241020
15
15
  types-Flask-Cors
16
16
  types-requests
17
- types-psutil
17
+ types-psutil>=6.1.0.20241102
18
18
  types-python-dateutil
19
19
  types-setuptools
20
20
  types-xmltodict
21
- backports.zoneinfo[tzdata];python_version<"3.9"
22
21
  flake8>=3.8.4,<8
23
22
  flake8-bugbear>=20.11.1,<25
24
23
  black
@@ -32,3 +31,4 @@ docutils>=0.16,<0.22
32
31
  pyupgrade
33
32
  pytest-xdist
34
33
  build
34
+ check-jsonschema
@@ -0,0 +1 @@
1
+ htcondor>=23.6.0,<25
@@ -1,4 +1,4 @@
1
- kubernetes>=12.0.1, <22
1
+ kubernetes>=12.0.1, <33
2
2
  # Nobody ever published stubs that support Python back to before 3.9, until
3
3
  # version 22.6.0 of the Kubernetes module. So we have to use the mismatched
4
4
  # stubs.
@@ -0,0 +1,8 @@
1
+ connexion[swagger-ui]>=2.10.0, <4
2
+ flask>=2.0,<4
3
+ werkzeug>=2.0,<4
4
+ flask-cors==5.0.0
5
+ gunicorn==23.0.0
6
+ celery>=5.1.0, <6
7
+ wes-service>=4.0.0, <5
8
+ ruamel.yaml>=0.15,<0.19
@@ -1,3 +1,3 @@
1
- miniwdl==1.12.0
1
+ miniwdl==1.12.1
2
2
  wdlparse==0.1.0
3
3
  graphlib-backport==1.0 ; python_version < '3.9'
@@ -3,9 +3,10 @@ requests<=2.31.0
3
3
  docker>=6.1.0, <8
4
4
  urllib3>=1.26.0,<3
5
5
  python-dateutil
6
- psutil >= 3.0.1, <6
6
+ psutil >= 6.1.0, < 7
7
7
  PyPubSub >=4.0.3, <5
8
8
  addict>=2.2.1, <2.5
9
+ backports.zoneinfo[tzdata];python_version<"3.9"
9
10
  enlighten>=1.5.2, <2
10
11
  configargparse>=1.7,<2
11
12
  ruamel.yaml>=0.15
@@ -21,6 +21,7 @@ from setuptools import find_packages, setup
21
21
  SETUP_DIR = os.path.dirname(__file__)
22
22
  README = os.path.join(SETUP_DIR, "README.rst")
23
23
 
24
+
24
25
  def get_requirements(extra=None):
25
26
  """
26
27
  Load the requirements for the given extra.
@@ -32,7 +33,9 @@ def get_requirements(extra=None):
32
33
 
33
34
  with open(filename) as fp:
34
35
  # Parse out as one per line, dropping comments
35
- return [l.split('#')[0].strip() for l in fp.readlines() if l.split('#')[0].strip()]
36
+ return [
37
+ l.split("#")[0].strip() for l in fp.readlines() if l.split("#")[0].strip()
38
+ ]
36
39
 
37
40
 
38
41
  def run_setup():
@@ -58,90 +61,102 @@ def run_setup():
58
61
  "google",
59
62
  "kubernetes",
60
63
  "wdl",
61
- "server"
64
+ "server",
62
65
  ]
63
66
  for extra in non_htcondor_extras:
64
67
  extras_require[extra] = get_requirements(extra)
65
68
  all_reqs += extras_require[extra]
66
69
  # We exclude htcondor from "all" because it can't be on Mac
67
70
  extras_require['htcondor:sys_platform!="darwin"'] = get_requirements("htcondor")
68
- extras_require['mesos'] = get_requirements("mesos")
71
+ extras_require["mesos"] = get_requirements("mesos")
69
72
  all_reqs += get_requirements("mesos")
70
73
  extras_require["all"] = all_reqs
71
74
  setup(
72
- name='toil',
75
+ name="toil",
73
76
  version=version.distVersion,
74
77
  long_description=open(README).read(),
75
78
  long_description_content_type="text/x-rst",
76
- description='Pipeline management software for clusters.',
77
- author='Benedict Paten and the Toil community',
78
- author_email='toil-community@googlegroups.com',
79
+ description="Pipeline management software for clusters.",
80
+ author="Benedict Paten and the Toil community",
81
+ author_email="toil-community@googlegroups.com",
79
82
  url="https://github.com/DataBiosphere/toil",
80
83
  classifiers=[
81
- 'Development Status :: 5 - Production/Stable',
82
- 'Environment :: Console',
83
- 'Intended Audience :: Developers',
84
- 'Intended Audience :: Science/Research',
85
- 'Intended Audience :: Healthcare Industry',
86
- 'License :: OSI Approved :: Apache Software License',
87
- 'Natural Language :: English',
88
- 'Operating System :: MacOS :: MacOS X',
89
- 'Operating System :: POSIX',
90
- 'Operating System :: POSIX :: Linux',
91
- 'Programming Language :: Python :: 3.8',
92
- 'Programming Language :: Python :: 3.9',
93
- 'Programming Language :: Python :: 3.10',
94
- 'Programming Language :: Python :: 3.11',
95
- 'Topic :: Scientific/Engineering',
96
- 'Topic :: Scientific/Engineering :: Bio-Informatics',
97
- 'Topic :: Scientific/Engineering :: Astronomy',
98
- 'Topic :: Scientific/Engineering :: Atmospheric Science',
99
- 'Topic :: Scientific/Engineering :: Information Analysis',
100
- 'Topic :: Scientific/Engineering :: Medical Science Apps.',
101
- 'Topic :: System :: Distributed Computing',
102
- 'Topic :: Utilities'],
84
+ "Development Status :: 5 - Production/Stable",
85
+ "Environment :: Console",
86
+ "Intended Audience :: Developers",
87
+ "Intended Audience :: Science/Research",
88
+ "Intended Audience :: Healthcare Industry",
89
+ "License :: OSI Approved :: Apache Software License",
90
+ "Natural Language :: English",
91
+ "Operating System :: MacOS :: MacOS X",
92
+ "Operating System :: POSIX",
93
+ "Operating System :: POSIX :: Linux",
94
+ "Programming Language :: Python :: 3.9",
95
+ "Programming Language :: Python :: 3.10",
96
+ "Programming Language :: Python :: 3.11",
97
+ "Programming Language :: Python :: 3.12",
98
+ "Programming Language :: Python :: 3.13",
99
+ "Topic :: Scientific/Engineering",
100
+ "Topic :: Scientific/Engineering :: Bio-Informatics",
101
+ "Topic :: Scientific/Engineering :: Astronomy",
102
+ "Topic :: Scientific/Engineering :: Atmospheric Science",
103
+ "Topic :: Scientific/Engineering :: Information Analysis",
104
+ "Topic :: Scientific/Engineering :: Medical Science Apps.",
105
+ "Topic :: System :: Distributed Computing",
106
+ "Topic :: Utilities",
107
+ ],
103
108
  license="Apache License v2.0",
104
- python_requires=">=3.8",
109
+ python_requires=">=3.9",
105
110
  install_requires=install_requires,
106
111
  extras_require=extras_require,
107
- package_dir={'': 'src'},
108
- packages=find_packages(where='src'),
112
+ package_dir={"": "src"},
113
+ packages=find_packages(where="src"),
109
114
  package_data={
110
- '': ['*.yml', '*.yaml', 'cloud-config', '*.cwl'],
115
+ "": ["*.yml", "*.yaml", "cloud-config", "*.cwl"],
111
116
  },
112
117
  # Unfortunately, the names of the entry points are hard-coded elsewhere in the code base so
113
118
  # you can't just change them here. Luckily, most of them are pretty unique strings, and thus
114
119
  # easy to search for.
115
120
  entry_points={
116
- 'console_scripts': [
117
- 'toil = toil.utils.toilMain:main',
118
- '_toil_worker = toil.worker:main',
119
- 'cwltoil = toil.cwl.cwltoil:cwltoil_was_removed [cwl]',
120
- 'toil-cwl-runner = toil.cwl.cwltoil:main [cwl]',
121
- 'toil-wdl-runner = toil.wdl.wdltoil:main [wdl]',
122
- 'toil-wes-cwl-runner = toil.server.cli.wes_cwl_runner:main [server]',
123
- '_toil_mesos_executor = toil.batchSystems.mesos.executor:main [mesos]',
124
- '_toil_contained_executor = toil.batchSystems.contained_executor:executor']})
121
+ "console_scripts": [
122
+ "toil = toil.utils.toilMain:main",
123
+ "_toil_worker = toil.worker:main",
124
+ "cwltoil = toil.cwl.cwltoil:cwltoil_was_removed [cwl]",
125
+ "toil-cwl-runner = toil.cwl.cwltoil:main [cwl]",
126
+ "toil-wdl-runner = toil.wdl.wdltoil:main [wdl]",
127
+ "toil-wes-cwl-runner = toil.server.cli.wes_cwl_runner:main [server]",
128
+ "_toil_mesos_executor = toil.batchSystems.mesos.executor:main [mesos]",
129
+ "_toil_contained_executor = toil.batchSystems.contained_executor:executor",
130
+ ]
131
+ },
132
+ )
125
133
 
126
134
 
127
135
  def import_version():
128
136
  """Return the module object for src/toil/version.py, generate from the template if required."""
129
- if not os.path.exists('src/toil/version.py'):
137
+ if not os.path.exists("src/toil/version.py"):
130
138
  for req in get_requirements("cwl"):
131
139
  # Determine cwltool version from requirements file
132
140
  if req.startswith("cwltool=="):
133
- cwltool_version = req[len("cwltool=="):]
141
+ cwltool_version = req[len("cwltool==") :]
134
142
  break
135
143
  # Use the template to generate src/toil/version.py
136
144
  import version_template
137
- with NamedTemporaryFile(mode='w', dir='src/toil', prefix='version.py.', delete=False) as f:
138
- f.write(version_template.expand_(others={
139
- # expose the dependency versions that we may need to access in Toil
140
- 'cwltool_version': cwltool_version,
141
- }))
142
- os.rename(f.name, 'src/toil/version.py')
143
-
144
- loader = SourceFileLoader('toil.version', 'src/toil/version.py')
145
+
146
+ with NamedTemporaryFile(
147
+ mode="w", dir="src/toil", prefix="version.py.", delete=False
148
+ ) as f:
149
+ f.write(
150
+ version_template.expand_(
151
+ others={
152
+ # expose the dependency versions that we may need to access in Toil
153
+ "cwltool_version": cwltool_version,
154
+ }
155
+ )
156
+ )
157
+ os.rename(f.name, "src/toil/version.py")
158
+
159
+ loader = SourceFileLoader("toil.version", "src/toil/version.py")
145
160
  mod = types.ModuleType(loader.name)
146
161
  loader.exec_module(mod)
147
162
  return mod