-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·45 lines (38 loc) · 998 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "auto-afids"
version = "0.1.0-pre.1"
description = "SnakeBIDS App for automatic anatomical fiducial (AFIDs) placement"
authors = ["Daniel Cao, Tristan Kuehn, Greydon Gilmore, Jonathan Lau"]
[tool.poetry.dependencies]
python = ">=3.8, <3.10"
snakebids = "~0.6.1"
numpy = "~1.22"
pandas = "~1.3"
svgutils = "~0.3.4"
scikit-image = "~0.18.2"
[tool.poetry.dev-dependencies]
flake8 = "^4.0"
pytest-console-scripts = "^1.2"
pytest = "^7.2"
black = "^22.1"
pylint = "^2.11"
isort = "^5.10"
poethepoet = "^0.10"
pre-commit = "^2.15.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
setup = "pre-commit install"
quality = { shell = "isort afids-auto-*/*.py && black afids-auto-*" }
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pylint.master]
ignore-patterns = "^[0-9][0-9]+_,^test_"
[tool.pylint.messages_control]
disable = """
missing-function-docstring,
missing-module-docstring,
fixme
"""