forked from snakemake-workflows/rna-seq-kallisto-sleuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (39 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "rna-seq-kallisto-sleuth"
version = "2.7.2"
description = "A Snakemake workflow for differential expression analysis of RNA-seq data with Kallisto and Sleuth"
authors = ["Austin Hovland", "Johannes Köster"]
license = "MIT"
readme = "README.md"
packages = [{include = "workflow"}]
[tool.poetry.dependencies]
python = "^3.10"
snakemake = "^7.23.0"
[tool.poetry.group.dev.dependencies]
pytest-coverage = "^0.0"
snakedeploy = "^0.8.6"
snakefmt = "^0.8.1"
mypy = "^1.0.1"
pytest = "^7.2.1"
pytest-black = "^0.3.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.snakefmt]
line_length = 120
include = '\.smk$|^Snakefile|\.py$'
# snakefmt passes these options on to black
[tool.black]
skip_string_normalization = true
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.html]
directory = "tests/coverage_html_report"
[tool.coverage.report]
fail_under = 80
[tool.pytest]
addopts = "--cov=workflow --cov-report=term-missing --cov-report=html:tests/coverage_html_report --black --flake8 --mypy --ignore=tests/coverage_html_report --ignore=tests/coverage.html"
[tool.pytest.ini_options]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli = true