-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.13 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "snakemake-executor-plugin-azure-batch"
version = "0.3.0"
description = "A Snakemake executor plugin for submitting jobs to Microsoft Azure Batch."
authors = [
"Jake VanCampen <[email protected]>",
"Johannes Koester <[email protected]>"
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/snakemake/snakemake-executor-plugin-azure-batch"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/executor/azure-batch.html"
keywords = ["snakemake", "plugin", "executor", "azure-batch"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.17.2"
snakemake-interface-executor-plugins = "^9.2.0"
azure-storage-blob = "^12.20.0"
azure-batch = "^14.2.0"
azure-mgmt-batch = "^17.0.0"
azure-identity = "^1.17.1"
msrest = "^0.7.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
flake8 = "^7.1.0"
coverage = "^7.6.0"
pytest = "^8.2.2"
snakemake = "^8.20.1"
snakemake-storage-plugin-s3 = "0.2.12"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"