-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.01 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
[tool.poetry]
name = "snakemake-storage-plugin-s3"
version = "0.2.12"
description = "A Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)"
authors = ["Johannes Koester <[email protected]>"]
readme = "README.md"
repository = "https://github.com/snakemake/snakemake-storage-plugin-s3"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/storage/s3.html"
license = "MIT"
keywords = ["snakemake", "plugin", "storage", "s3"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.14.0"
snakemake-interface-storage-plugins = "^3.2.4"
# https://github.com/boto/botocore/commit/f9470df1af9f2a59d3c30f691e593d0e4abbe9e2
boto3 = "^1.34.63"
botocore = "^1.34.63"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
flake8 = ">=6.1,<8.0"
coverage = "^7.3.1"
pytest = "^7.4.2"
snakemake = "^8.18.0"
setuptools = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]