toil 7.0.0__tar.gz → 8.1.0b1__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.
- {toil-7.0.0 → toil-8.1.0b1}/PKG-INFO +42 -22
- {toil-7.0.0 → toil-8.1.0b1}/README.rst +4 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-cwl.txt +2 -1
- {toil-7.0.0 → toil-8.1.0b1}/requirements-dev.txt +9 -9
- toil-8.1.0b1/requirements-htcondor.txt +1 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-kubernetes.txt +1 -1
- toil-8.1.0b1/requirements-server.txt +8 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-wdl.txt +1 -1
- {toil-7.0.0 → toil-8.1.0b1}/requirements.txt +3 -1
- {toil-7.0.0 → toil-8.1.0b1}/setup.py +67 -52
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/__init__.py +124 -86
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/__init__.py +1 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/abstractBatchSystem.py +137 -77
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/abstractGridEngineBatchSystem.py +211 -101
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/awsBatch.py +237 -128
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/cleanup_support.py +22 -16
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/contained_executor.py +30 -26
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/gridengine.py +85 -49
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/htcondor.py +164 -87
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/kubernetes.py +622 -386
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/local_support.py +17 -12
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/lsf.py +132 -79
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/lsfHelper.py +13 -11
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/mesos/__init__.py +41 -29
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/mesos/batchSystem.py +288 -149
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/mesos/executor.py +77 -49
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/mesos/test/__init__.py +31 -23
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/options.py +39 -29
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/registry.py +53 -19
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/singleMachine.py +293 -123
- toil-8.1.0b1/src/toil/batchSystems/slurm.py +1000 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/torque.py +46 -32
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/bus.py +141 -73
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/common.py +784 -397
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/cwl/__init__.py +1 -1
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/cwl/cwltoil.py +1137 -534
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/cwl/utils.py +17 -22
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/deferred.py +62 -41
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/exceptions.py +5 -3
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/fileStores/__init__.py +5 -5
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/fileStores/abstractFileStore.py +88 -57
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/fileStores/cachingFileStore.py +711 -247
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/fileStores/nonCachingFileStore.py +113 -75
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/job.py +1031 -349
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/abstractJobStore.py +387 -243
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/aws/jobStore.py +772 -412
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/aws/utils.py +161 -109
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/conftest.py +1 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/fileJobStore.py +289 -151
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/googleJobStore.py +137 -70
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/utils.py +36 -15
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/leader.py +614 -269
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/accelerators.py +115 -18
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/aws/__init__.py +55 -28
- toil-8.1.0b1/src/toil/lib/aws/ami.py +226 -0
- toil-8.1.0b1/src/toil/lib/aws/iam.py +485 -0
- toil-8.1.0b1/src/toil/lib/aws/s3.py +31 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/aws/session.py +204 -58
- toil-8.1.0b1/src/toil/lib/aws/utils.py +559 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/bioio.py +13 -5
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/compatibility.py +11 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/conversions.py +83 -49
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/docker.py +131 -103
- toil-8.1.0b1/src/toil/lib/dockstore.py +379 -0
- toil-8.1.0b1/src/toil/lib/ec2.py +680 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/ec2nodes.py +174 -105
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/encryption/_dummy.py +5 -3
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/encryption/_nacl.py +10 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/encryption/conftest.py +1 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/exceptions.py +26 -7
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/expando.py +4 -2
- toil-8.1.0b1/src/toil/lib/ftp_utils.py +217 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/generatedEC2Lists.py +127 -19
- toil-8.1.0b1/src/toil/lib/history.py +1271 -0
- toil-8.1.0b1/src/toil/lib/history_submission.py +681 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/humanize.py +6 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/io.py +121 -12
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/iterables.py +4 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/memoize.py +12 -8
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/misc.py +83 -18
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/objects.py +2 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/resources.py +19 -7
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/retry.py +125 -87
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/threading.py +282 -80
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/throttle.py +15 -14
- toil-8.1.0b1/src/toil/lib/trs.py +390 -0
- toil-8.1.0b1/src/toil/lib/web.py +38 -0
- toil-8.1.0b1/src/toil/options/common.py +1187 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/options/cwl.py +185 -90
- toil-8.1.0b1/src/toil/options/runner.py +50 -0
- toil-8.1.0b1/src/toil/options/wdl.py +88 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/__init__.py +111 -46
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/abstractProvisioner.py +322 -157
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/aws/__init__.py +62 -30
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/aws/awsProvisioner.py +980 -627
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/clusterScaler.py +541 -279
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/gceProvisioner.py +283 -180
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/provisioners/node.py +147 -79
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/realtimeLogger.py +34 -22
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/resource.py +137 -75
- toil-8.1.0b1/src/toil/server/app.py +209 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/celery_app.py +3 -1
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/cli/wes_cwl_runner.py +84 -55
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/utils.py +56 -31
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wes/abstract_backend.py +64 -26
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wes/amazon_wes_utils.py +21 -15
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wes/tasks.py +121 -63
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wes/toil_backend.py +142 -107
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wsgi_app.py +4 -3
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/serviceManager.py +58 -22
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/statsAndLogging.py +183 -65
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/__init__.py +263 -179
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/batchSystems/batchSystemTest.py +438 -195
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/batchSystems/batch_system_plugin_test.py +18 -7
- toil-8.1.0b1/src/toil/test/batchSystems/test_gridengine.py +173 -0
- toil-8.1.0b1/src/toil/test/batchSystems/test_lsf_helper.py +83 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/batchSystems/test_slurm.py +265 -49
- toil-8.1.0b1/src/toil/test/cactus/test_cactus_integration.py +56 -0
- toil-8.1.0b1/src/toil/test/cwl/conftest.py +56 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/cwlTest.py +375 -72
- toil-8.1.0b1/src/toil/test/cwl/measure_default_memory.cwl +12 -0
- toil-8.1.0b1/src/toil/test/cwl/not_run_required_input.cwl +29 -0
- toil-8.1.0b1/src/toil/test/cwl/optional-file.cwl +18 -0
- toil-8.1.0b1/src/toil/test/cwl/scatter_duplicate_outputs.cwl +40 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/docs/scriptsTest.py +60 -34
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/jobStores/jobStoreTest.py +412 -235
- toil-8.1.0b1/src/toil/test/lib/aws/test_iam.py +197 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/aws/test_s3.py +16 -9
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/aws/test_utils.py +5 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/dockerTest.py +118 -141
- toil-8.1.0b1/src/toil/test/lib/test_conversions.py +211 -0
- toil-8.1.0b1/src/toil/test/lib/test_ec2.py +104 -0
- toil-8.1.0b1/src/toil/test/lib/test_history.py +212 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/test_misc.py +12 -5
- toil-8.1.0b1/src/toil/test/lib/test_trs.py +161 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/mesos/MesosDataStructuresTest.py +23 -10
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/mesos/helloWorld.py +7 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/mesos/stress.py +25 -20
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/options/options.py +7 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/aws/awsProvisionerTest.py +293 -140
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/clusterScalerTest.py +440 -250
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/clusterTest.py +81 -42
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/gceProvisionerTest.py +174 -100
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/provisionerTest.py +25 -13
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/restartScript.py +5 -4
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/server/serverTest.py +188 -141
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/sort/restart_sort.py +137 -68
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/sort/sort.py +134 -66
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/sort/sortTest.py +91 -49
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/autoDeploymentTest.py +140 -100
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/busTest.py +20 -18
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/checkpointTest.py +8 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/deferredFunctionTest.py +49 -35
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/dockerCheckTest.py +33 -26
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/environmentTest.py +20 -10
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/fileStoreTest.py +538 -271
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/helloWorldTest.py +7 -4
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/importExportFileTest.py +61 -31
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/jobDescriptionTest.py +32 -17
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/jobEncapsulationTest.py +2 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/jobFileStoreTest.py +74 -50
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/jobServiceTest.py +187 -73
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/jobTest.py +120 -70
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/miscTests.py +19 -18
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/promisedRequirementTest.py +82 -36
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/promisesTest.py +7 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/realtimeLoggerTest.py +6 -6
- toil-8.1.0b1/src/toil/test/src/regularLogTest.py +134 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/resourceTest.py +80 -49
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/restartDAGTest.py +36 -22
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/resumabilityTest.py +9 -2
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/retainTempDirTest.py +45 -14
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/systemTest.py +12 -8
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/threadingTest.py +44 -25
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/toilContextManagerTest.py +10 -7
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/userDefinedJobArgTypeTest.py +8 -5
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/workerTest.py +33 -16
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/utils/toilDebugTest.py +70 -58
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/utils/toilKillTest.py +4 -5
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/utils/utilsTest.py +239 -102
- toil-8.1.0b1/src/toil/test/wdl/wdltoil_test.py +1012 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/wdl/wdltoil_test_kubernetes.py +37 -23
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/toilState.py +52 -26
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilConfig.py +13 -4
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilDebugFile.py +44 -27
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilDebugJob.py +85 -25
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilDestroyCluster.py +11 -6
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilKill.py +8 -3
- toil-8.1.0b1/src/toil/utils/toilLaunchCluster.py +351 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilMain.py +37 -16
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilRsyncCluster.py +27 -14
- toil-8.1.0b1/src/toil/utils/toilSshCluster.py +85 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilStats.py +75 -36
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilStatus.py +226 -119
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilUpdateEC2Instances.py +3 -1
- toil-8.1.0b1/src/toil/version.py +14 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/wdl/utils.py +5 -5
- toil-8.1.0b1/src/toil/wdl/wdltoil.py +5679 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/worker.py +370 -149
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/PKG-INFO +42 -22
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/SOURCES.txt +15 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/requires.txt +24 -18
- toil-7.0.0/requirements-htcondor.txt +0 -1
- toil-7.0.0/requirements-server.txt +0 -8
- toil-7.0.0/src/toil/batchSystems/slurm.py +0 -504
- toil-7.0.0/src/toil/lib/aws/ami.py +0 -191
- toil-7.0.0/src/toil/lib/aws/iam.py +0 -309
- toil-7.0.0/src/toil/lib/aws/utils.py +0 -482
- toil-7.0.0/src/toil/lib/ec2.py +0 -567
- toil-7.0.0/src/toil/options/common.py +0 -739
- toil-7.0.0/src/toil/options/wdl.py +0 -37
- toil-7.0.0/src/toil/server/app.py +0 -143
- toil-7.0.0/src/toil/test/batchSystems/test_lsf_helper.py +0 -74
- toil-7.0.0/src/toil/test/cactus/test_cactus_integration.py +0 -58
- toil-7.0.0/src/toil/test/cwl/conftest.py +0 -17
- toil-7.0.0/src/toil/test/lib/aws/test_iam.py +0 -129
- toil-7.0.0/src/toil/test/lib/test_conversions.py +0 -213
- toil-7.0.0/src/toil/test/lib/test_ec2.py +0 -96
- toil-7.0.0/src/toil/test/src/regularLogTest.py +0 -100
- toil-7.0.0/src/toil/test/wdl/wdltoil_test.py +0 -371
- toil-7.0.0/src/toil/utils/toilLaunchCluster.py +0 -245
- toil-7.0.0/src/toil/utils/toilSshCluster.py +0 -62
- toil-7.0.0/src/toil/version.py +0 -14
- toil-7.0.0/src/toil/wdl/wdltoil.py +0 -3204
- {toil-7.0.0 → toil-8.1.0b1}/LICENSE +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/MANIFEST.in +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-aws.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-encryption.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-google.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/requirements-mesos.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/setup.cfg +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/batchSystems/mesos/conftest.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/cwl/conftest.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/jobStores/aws/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/lib/encryption/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/options/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/api_spec/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/api_spec/workflow_execution_service.swagger.yaml +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/cli/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/server/wes/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/batchSystems/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cactus/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/alwaysfails.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/colon_test_output.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/colon_test_output_job.yaml +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/conditional_wf.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/conditional_wf.yaml +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/directory_from_directory.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/download.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/download_directory.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/download_subdirectory.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/echo-stderr.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/echo-stdout-log-dir.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/echo.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/echo_string.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/echo_string_scatter_capture_stdout.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/file_from_directory.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/glob_dir.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/load_contents.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/mpi_simple.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/nvidia_smi.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/preemptible.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/preemptible_expression.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/revsort.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/revsort2.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/revtool.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/revtool2.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/s3_secondary_file.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/seqtk_seq.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/sorttool.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/stream.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/test_filename_conflict_detection.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/test_filename_conflict_detection_at_root.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/cwl/test_filename_conflict_resolution.cwl +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/docs/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/jobStores/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/lib/aws/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/mesos/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/options/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/provisioners/aws/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/server/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/sort/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/src/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/utils/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/test/wdl/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilClean.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/utils/toilServer.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil/wdl/__init__.py +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/dependency_links.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/entry_points.txt +0 -0
- {toil-7.0.0 → toil-8.1.0b1}/src/toil.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: toil
|
|
3
|
-
Version:
|
|
3
|
+
Version: 8.1.0b1
|
|
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.
|
|
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,15 +37,17 @@ 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
|
|
40
|
+
Requires-Dist: psutil<8,>=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
|
|
45
47
|
Requires-Dist: pyyaml<7,>=6
|
|
46
48
|
Requires-Dist: typing-extensions<5,>=4.6.2
|
|
47
49
|
Requires-Dist: coloredlogs<16,>=15
|
|
50
|
+
Requires-Dist: prompt_toolkit<4,>=3.0
|
|
48
51
|
Provides-Extra: aws
|
|
49
52
|
Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post2; extra == "aws"
|
|
50
53
|
Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "aws"
|
|
@@ -52,7 +55,7 @@ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
|
|
|
52
55
|
Requires-Dist: moto<6,>=5.0.3; extra == "aws"
|
|
53
56
|
Requires-Dist: ec2_metadata<3; extra == "aws"
|
|
54
57
|
Provides-Extra: cwl
|
|
55
|
-
Requires-Dist: cwltool==3.1.
|
|
58
|
+
Requires-Dist: cwltool==3.1.20250110105449; extra == "cwl"
|
|
56
59
|
Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
|
|
57
60
|
Requires-Dist: galaxy-tool-util<25; extra == "cwl"
|
|
58
61
|
Requires-Dist: galaxy-util<25; extra == "cwl"
|
|
@@ -60,6 +63,7 @@ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
|
|
|
60
63
|
Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
|
|
61
64
|
Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
|
|
62
65
|
Requires-Dist: CacheControl[filecache]; extra == "cwl"
|
|
66
|
+
Requires-Dist: cwl-utils>=0.36; extra == "cwl"
|
|
63
67
|
Provides-Extra: encryption
|
|
64
68
|
Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
|
|
65
69
|
Provides-Extra: google
|
|
@@ -67,26 +71,26 @@ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "google"
|
|
|
67
71
|
Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
|
|
68
72
|
Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
|
|
69
73
|
Provides-Extra: kubernetes
|
|
70
|
-
Requires-Dist: kubernetes<
|
|
74
|
+
Requires-Dist: kubernetes<33,>=12.0.1; extra == "kubernetes"
|
|
71
75
|
Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
|
|
72
76
|
Requires-Dist: types-urllib3; extra == "kubernetes"
|
|
73
77
|
Requires-Dist: types-PyYAML; extra == "kubernetes"
|
|
74
78
|
Requires-Dist: idna>=2; extra == "kubernetes"
|
|
75
79
|
Provides-Extra: wdl
|
|
76
|
-
Requires-Dist: miniwdl==1.12.
|
|
80
|
+
Requires-Dist: miniwdl==1.12.1; extra == "wdl"
|
|
77
81
|
Requires-Dist: wdlparse==0.1.0; extra == "wdl"
|
|
78
82
|
Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
|
|
79
83
|
Provides-Extra: server
|
|
80
|
-
Requires-Dist: connexion[swagger-ui]<
|
|
81
|
-
Requires-Dist: flask<
|
|
82
|
-
Requires-Dist: werkzeug<
|
|
83
|
-
Requires-Dist: flask-cors==
|
|
84
|
-
Requires-Dist: gunicorn==
|
|
84
|
+
Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "server"
|
|
85
|
+
Requires-Dist: flask<4,>=2.0; extra == "server"
|
|
86
|
+
Requires-Dist: werkzeug<4,>=2.0; extra == "server"
|
|
87
|
+
Requires-Dist: flask-cors==5.0.1; extra == "server"
|
|
88
|
+
Requires-Dist: gunicorn==23.0.0; extra == "server"
|
|
85
89
|
Requires-Dist: celery<6,>=5.1.0; extra == "server"
|
|
86
90
|
Requires-Dist: wes-service<5,>=4.0.0; extra == "server"
|
|
87
91
|
Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "server"
|
|
88
92
|
Provides-Extra: htcondor
|
|
89
|
-
Requires-Dist: htcondor<
|
|
93
|
+
Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
|
|
90
94
|
Provides-Extra: mesos
|
|
91
95
|
Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "mesos"
|
|
92
96
|
Provides-Extra: all
|
|
@@ -95,7 +99,7 @@ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
|
|
|
95
99
|
Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
|
|
96
100
|
Requires-Dist: moto<6,>=5.0.3; extra == "all"
|
|
97
101
|
Requires-Dist: ec2_metadata<3; extra == "all"
|
|
98
|
-
Requires-Dist: cwltool==3.1.
|
|
102
|
+
Requires-Dist: cwltool==3.1.20250110105449; extra == "all"
|
|
99
103
|
Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
|
|
100
104
|
Requires-Dist: galaxy-tool-util<25; extra == "all"
|
|
101
105
|
Requires-Dist: galaxy-util<25; extra == "all"
|
|
@@ -103,27 +107,43 @@ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
|
|
|
103
107
|
Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
|
|
104
108
|
Requires-Dist: networkx!=2.8.1,<4; extra == "all"
|
|
105
109
|
Requires-Dist: CacheControl[filecache]; extra == "all"
|
|
110
|
+
Requires-Dist: cwl-utils>=0.36; extra == "all"
|
|
106
111
|
Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
|
|
107
112
|
Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "all"
|
|
108
113
|
Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
|
|
109
114
|
Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
|
|
110
|
-
Requires-Dist: kubernetes<
|
|
115
|
+
Requires-Dist: kubernetes<33,>=12.0.1; extra == "all"
|
|
111
116
|
Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
|
|
112
117
|
Requires-Dist: types-urllib3; extra == "all"
|
|
113
118
|
Requires-Dist: types-PyYAML; extra == "all"
|
|
114
119
|
Requires-Dist: idna>=2; extra == "all"
|
|
115
|
-
Requires-Dist: miniwdl==1.12.
|
|
120
|
+
Requires-Dist: miniwdl==1.12.1; extra == "all"
|
|
116
121
|
Requires-Dist: wdlparse==0.1.0; extra == "all"
|
|
117
122
|
Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
|
|
118
|
-
Requires-Dist: connexion[swagger-ui]<
|
|
119
|
-
Requires-Dist: flask<
|
|
120
|
-
Requires-Dist: werkzeug<
|
|
121
|
-
Requires-Dist: flask-cors==
|
|
122
|
-
Requires-Dist: gunicorn==
|
|
123
|
+
Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "all"
|
|
124
|
+
Requires-Dist: flask<4,>=2.0; extra == "all"
|
|
125
|
+
Requires-Dist: werkzeug<4,>=2.0; extra == "all"
|
|
126
|
+
Requires-Dist: flask-cors==5.0.1; extra == "all"
|
|
127
|
+
Requires-Dist: gunicorn==23.0.0; extra == "all"
|
|
123
128
|
Requires-Dist: celery<6,>=5.1.0; extra == "all"
|
|
124
129
|
Requires-Dist: wes-service<5,>=4.0.0; extra == "all"
|
|
125
130
|
Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "all"
|
|
126
131
|
Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "all"
|
|
132
|
+
Dynamic: author
|
|
133
|
+
Dynamic: author-email
|
|
134
|
+
Dynamic: classifier
|
|
135
|
+
Dynamic: description
|
|
136
|
+
Dynamic: description-content-type
|
|
137
|
+
Dynamic: home-page
|
|
138
|
+
Dynamic: license
|
|
139
|
+
Dynamic: provides-extra
|
|
140
|
+
Dynamic: requires-dist
|
|
141
|
+
Dynamic: requires-python
|
|
142
|
+
Dynamic: summary
|
|
143
|
+
|
|
144
|
+
.. image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/required.json%3Fjob=cwl_badge?icon=commonwl&label=CWL%201.2%20Conformance
|
|
145
|
+
:alt: Toil CWL 1.2 Conformance Badge
|
|
146
|
+
:target: https://github.com/common-workflow-language/cwl-v1.2/blob/main/CONFORMANCE_TESTS.md
|
|
127
147
|
|
|
128
148
|
.. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
|
|
129
149
|
:alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/required.json%3Fjob=cwl_badge?icon=commonwl&label=CWL%201.2%20Conformance
|
|
2
|
+
:alt: Toil CWL 1.2 Conformance Badge
|
|
3
|
+
:target: https://github.com/common-workflow-language/cwl-v1.2/blob/main/CONFORMANCE_TESTS.md
|
|
4
|
+
|
|
1
5
|
.. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
|
|
2
6
|
:alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
|
|
3
7
|
:target: https://gitter.im/bd2k-genomics-toil/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cwltool==3.1.
|
|
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,<
|
|
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,<
|
|
6
|
-
sphinx>=7,<
|
|
7
|
-
sphinx-autoapi>=3,<4
|
|
5
|
+
setuptools>=65.5.1,<77
|
|
6
|
+
sphinx>=7,<9
|
|
7
|
+
sphinx-autoapi>=3.2.1,<4
|
|
8
8
|
astroid>=3,<4
|
|
9
|
-
sphinx-autodoc-typehints>=1.24.0,<
|
|
9
|
+
sphinx-autodoc-typehints>=1.24.0,<4
|
|
10
10
|
sphinxcontrib-autoprogram==0.1.9
|
|
11
11
|
cwltest>=2.2.20211116163652
|
|
12
|
-
mypy==1.
|
|
12
|
+
mypy==1.15.0
|
|
13
13
|
types-aws-xray-sdk
|
|
14
|
-
types-boto<2.49.18.
|
|
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
|
|
@@ -3,12 +3,14 @@ requests<=2.31.0
|
|
|
3
3
|
docker>=6.1.0, <8
|
|
4
4
|
urllib3>=1.26.0,<3
|
|
5
5
|
python-dateutil
|
|
6
|
-
psutil >=
|
|
6
|
+
psutil >= 6.1.0, < 8
|
|
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
|
|
12
13
|
pyyaml>=6,<7
|
|
13
14
|
typing-extensions>=4.6.2, <5
|
|
14
15
|
coloredlogs>=15,<16
|
|
16
|
+
prompt_toolkit>=3.0,<4
|
|
@@ -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 [
|
|
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[
|
|
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=
|
|
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=
|
|
77
|
-
author=
|
|
78
|
-
author_email=
|
|
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
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
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.
|
|
109
|
+
python_requires=">=3.9",
|
|
105
110
|
install_requires=install_requires,
|
|
106
111
|
extras_require=extras_require,
|
|
107
|
-
package_dir={
|
|
108
|
-
packages=find_packages(where=
|
|
112
|
+
package_dir={"": "src"},
|
|
113
|
+
packages=find_packages(where="src"),
|
|
109
114
|
package_data={
|
|
110
|
-
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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(
|
|
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
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
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
|