forked from nipoppy/nipoppy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 1.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
build-backend = "hatchling.build"
requires = ["hatch-vcs", "hatchling"]
[project]
authors = [{ name = "Nipoppy developpers" }]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"boutiques",
"click",
"pandas",
"pybids!=0.18.0",
"pydantic",
"pydicom!=3.0.0",
"rich",
"rich-click",
"typing-extensions",
"requests",
]
description = "Standardized organization and processing of neuroimaging-clinical datasets"
license = { file = "LICENSE" }
name = "nipoppy"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
[project.optional-dependencies]
dev = ["nipoppy[doc]", "nipoppy[test]", "pre-commit"]
doc = [
"furo",
"mdit-py-plugins",
"myst-parser",
"sphinx",
"sphinx-autoapi",
"sphinx-click",
"sphinx-copybutton",
"sphinx-github-changelog",
"sphinx-hoverxref",
"sphinx-jsonschema",
"sphinx-togglebutton",
"sphinx_design"
]
test = [
"fids>=0.1.0",
"packaging",
"pytest-cov",
"pytest-mock",
"pytest>=6.0.0",
]
tests = ["nipoppy[test]"] # alias in case of typo
[project.scripts]
nipoppy = "nipoppy.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["nipoppy"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.hooks.vcs]
version-file = "nipoppy/_version.py"
[tool.hatch.version]
source = "vcs"
[tool.codespell]
skip = '.git,.github,pyproject.toml'
[tool.pytest.ini_options]
addopts = "-ra -q -vv"
testpaths = ["tests/"]
minversion = "6.0"
xfail_strict = true