-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (27 loc) · 900 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
32
[tool.poetry]
authors = ["Johannes Köster <johannes.koester@uni-due.de>"]
description = "This package provides a stable interface for interactions between Snakemake and its executor plugins."
license = "MIT"
name = "snakemake-interface-executor-plugins"
packages = [{include = "snakemake_interface_executor_plugins"}]
readme = "README.md"
version = "9.3.0"
[tool.poetry.dependencies]
argparse-dataclass = "^2.0.0"
python = "^3.11"
throttler = "^1.2.2"
snakemake-interface-common = "^1.17.4"
[tool.poetry.dev-dependencies]
black = "^24.0.0"
coverage = {extras = ["toml"], version = "^6.3.1"}
flake8 = "^4.0.1"
flake8-bugbear = "^22.1.11"
pytest = "^7.0"
snakemake = {git="https://github.com/snakemake/snakemake.git"}
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 63
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]