-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (39 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
50 lines (39 loc) · 878 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
44
45
46
47
48
49
50
[project]
name = "halfpipe-atlases"
dynamic = ["version"]
requires-python = ">=3.11"
description = "Atlases for use with ENIGMA HALFpipe"
authors = [
]
dependencies = [
"halfpipe",
"nibabel >= 3.2.1",
"nipype >= 1.6.0",
"numpy",
"pandas >= 1.2.0",
"python-docx",
"templateflow >= 0.7.1",
"xlrd >= 1.0.0",
]
[project.scripts]
halfpipe-atlases-build = "halfpipe_atlases.build_all:build"
[build-system]
requires = [
"setuptools>=62",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
[tool.pyright]
typeCheckingMode = "off"