-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (32 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
43 lines (32 loc) · 927 Bytes
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
[project]
name = "halfpipe"
dynamic = ["version"]
requires-python = ">=3.12"
description = "ENIGMA HALFpipe facilitates reproducible analysis of fMRI data, including preprocessing, single-subject, and group analysis"
license = { file = "LICENSE.txt" }
readme = "README.md"
[project.urls]
repository = "https://github.com/HALFpipe/HALFpipe"
[project.scripts]
halfpipe = "halfpipe.cli.run:main"
[build-system]
# Remember to keep in sync with requirements.in!
requires = ["setuptools>=62", "setuptools_scm[toml]>=6.2", "wheel"]
[tool.pyright]
typeCheckingMode = "off"
[tool.ruff]
line-length = 127
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"B", # bugbears
"N", # pep8-naming
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools_scm]
version_scheme = "no-guess-dev"