-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
29 lines (25 loc) · 948 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
[tool.poetry]
name = "snakemake-storage-plugin-fs"
version = "1.0.6"
description = " A Snakemake storage plugin that reads and writes from a locally mounted filesystem using rsync"
authors = ["Johannes Koester <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/snakemake/snakemake-storage-plugin-fs"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/storage/fs.html"
keywords = ["snakemake", "plugin", "storage", "filesystem", "rsync"]
[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.17.0"
snakemake-interface-storage-plugins = "^3.2.2"
sysrsync = "^1.1.1"
reretry = "^0.11.8"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
flake8 = "^6.1.0"
coverage = "^7.3.2"
pytest = "^7.4.3"
snakemake = {git="https://github.com/snakemake/snakemake.git"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"