-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.36 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
authors = [
{name = "CMI DAIR", email = "dair@childmind.org"}
]
license = "LGPL-2.1"
requires-python = ">=3.10"
name = "gen192"
version = "0.1.0"
description = "A beautiful description."
readme = "README.md"
dependencies = [
"pyyaml>=6.0.1",
"nipype==1.8.6", # for cpac config expansion
"voluptuous==0.14.2", # for cpac config expansion
"pathvalidate==3.2.0", # for cpac config expansion
"yamlordereddictloader==0.4.2", # for cpac config expansion
"setuptools==69.5.1", # for cpac config expansion
"traits==6.3.2" # for cpac config expansion
]
[project.scripts]
gen192 = "gen192.cli:cli"
[dependency-groups]
dev = [
"pytest>=8.3.4",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pytest-cov>=6.0.0",
"ruff>=0.8.1",
"types-pyyaml>=6.0.12.20250402",
"pytest-mock>=3.14.0"
]
docs = ["pdoc>=15.0.0"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
exclude = [
"^temp"
]
[tool.ruff]
line-length = 120
indent-width = 4
src = ["src"]
target-version = "py311"
[tool.ruff.lint]
select = ["ANN", "E", "F", "I"]
ignore = [
"E712" # Avoid equality comparisons to `True`;
]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"