forked from 4dn-dcic/snakemake-executor-plugin-tibanna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 847 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-tibanna"
version = "0.1.0"
description = "A Snakemake executor plugin for Amazon AWS workflow exection with tibanna."
authors = [
"Soohyun Lee <@SooLee>", # TODO please add Soo Lee's email address
"Johannes Koester <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.14.1"
snakemake-interface-executor-plugins = "^7.0.3"
tibanna = "^4.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
flake8 = "^6.1.0"
coverage = "^7.3.1"
pytest = "^7.4.2"
snakemake = {git = "https://github.com/snakemake/snakemake.git"}
snakemake-storage-plugin-s3 = "^0.2.4"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"