-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (26 loc) · 954 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
[tool.poetry]
name = "snakemake-executor-plugin-flux"
version = "0.1.1"
description = "A snakemake executor plugin for the Flux scheduler"
authors = ["vsoch <[email protected]>"]
readme = "README.md"
packages = [{include = "snakemake_executor_plugin_flux"}]
license = "MIT"
repository = "https://github.com/snakemake/snakemake-executor-plugin-flux"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/executor/flux.html"
keywords = ["snakemake", "plugin", "executor", "flux", "flux-framework"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.14.0"
snakemake-interface-executor-plugins = "^9.0.0"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
flake8 = "^6.1.0"
coverage = "^7.3.1"
pytest = "^7.4.2"
snakemake = "^8.20.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"