-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 967 Bytes
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
[tool.poetry]
name = "snakemake-executor-plugin-aws-batch"
version = "0.2.1"
description = "Snakemake executor plugin for AWS Batch"
license = "MIT"
authors = ["jakevc <jake.vancampen7@gmail.com>", "W. Lee Pang <wleepang>"]
readme = "README.md"
repository = "https://github.com/snakemake/snakemake-executor-plugin-aws-batch"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/executor/aws-batch.html"
keywords = ["snakemake", "plugin", "executor", "aws-batch"]
[tool.poetry.dependencies]
boto3 = "^1.36.5"
python = "^3.11"
snakemake-interface-common = "^1.17.4"
snakemake-interface-executor-plugins = "^9.3.2"
snakemake-storage-plugin-s3 = "^0.3.1"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
flake8 = "^6.1.0"
coverage = "^7.3.2"
pytest = "^7.4.3"
snakemake = "^8.30.0"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"