forked from akhanf/diffparc-smk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.11 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
50
51
52
53
54
55
[tool.poetry]
name = "zonaconn-smk"
version = "0.1.0"
description = "Snakemake workflow to identify connectivity to the zona incerta"
authors = [
"Ali Khan",
"Sudesna Chakraborty",
"Jason Kai",
"Roy Haast",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
snakebids = "^0.7.1"
scikit-learn = "^1.1.3"
nibabel = "^4.0.2"
matplotlib = "^3.6.2"
pandas = "^1.5.1"
nilearn = "^0.9.2"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
poethepoet = "^0.16.4"
snakefmt = "^0.7.0"
isort = "^5.10.1"
[tool.poetry.group.jupyter.dependencies]
jupyter = "^1.0.0"
jupyterlab = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
isort = "isort ./subcorticalparc_smk/*.py"
black = "black ./subcorticalparc_smk -l 79"
flake8 = "flake8 subcorticalparc_smk --ignore=E501"
snakefmt = "snakefmt ./subcorticalparc_smk"
quality = ["isort", "black", "flake8", "snakefmt"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.black]
line-length = 79
[tool.flake8]
ignore = 'E501'
[tool.snakefmt]
include = '\.smk$|^Snakefile'