-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
29 lines (26 loc) · 953 Bytes
/
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
[tool.poetry]
name = "snakemake-storage-plugin-azure"
version = "0.4.2"
description = "A Snakemake storage plugin to read and write from Azure Blob Storage"
authors = ["Jake VanCampen <[email protected]>"]
repository = "https://github.com/snakemake/snakemake-storage-plugin-azure"
license = "MIT"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/storage/azure.html"
readme = "README.md"
keywords = ["snakemake", "plugin", "storage", "azure"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.17.2"
snakemake-interface-storage-plugins = "^3.2.3"
azure-storage-blob = "^12.20.0"
azure-core = "^1.30.2"
azure-identity = "^1.17.1"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
flake8 = "^6.1.0"
coverage = "^7.3.2"
pytest = "^7.4.3"
snakemake = {git="https://github.com/snakemake/snakemake.git"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"