-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
31 lines (27 loc) · 1008 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
30
31
[tool.poetry]
name = "snakemake-executor-plugin-kubernetes"
version = "0.2.2"
description = "A snakemake executor plugin for submission of jobs to Kubernetes"
authors = ["Johannes Koester <johannes.koester@uni-due.de>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/snakemake/snakemake-executor-plugin-kubernetes"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/executor/kubernetes.html"
keywords = ["snakemake", "plugin", "executor", "cloud", "kubernetes"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.17.3"
snakemake-interface-executor-plugins = ">=9.0.0,<10.0.0"
kubernetes = ">=27.2.0,<31"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
coverage = "^7.3.1"
pytest = "^7.4.1"
snakemake = "^8.18.0"
snakemake-storage-plugin-s3 = "^0.2.7"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"