-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
108 lines (95 loc) · 2.52 KB
/
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "VisualQC"
description = 'Assistive tool for the quality control of neuroimaging data'
readme = "README.rst"
requires-python = ">=3.7"
license = "Apache-2.0"
keywords = ['visualqc', ]
authors = [
{ name = "Pradeep Reddy Raamana", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
'scipy',
'numpy',
'matplotlib>=2.1.1',
'mrivis',
'nibabel',
'scikit-learn',
'pybids',
]
dynamic = ["version"]
[project.urls]
Homepage = 'https://github.com/raamana/visualqc'
[project.scripts]
visualqc_t1_mri = "visualqc.__t1_mri__:main"
visualqc_anatomical = "visualqc.__t1_mri__:main"
visualqc_defacing = "visualqc.__defacing__:main"
visualqc_func_mri = "visualqc.__func_mri__:main"
visualqc_diffusion = "visualqc.__diffusion__:main"
visualqc_freesurfer = "visualqc.__freesurfer__:main"
visualqc_alignment = "visualqc.__alignment__:main"
vqcdeface = "visualqc.__defacing__:main"
vqct1 = "visualqc.__t1_mri__:main"
vqcanat = "visualqc.__t1_mri__:main"
vqcfunc = "visualqc.__func_mri__:main"
vqcdwi = "visualqc.__diffusion__:main"
vqcfs = "visualqc.__freesurfer__:main"
vqcalign = "visualqc.__alignment__:main"
[tool.hatch.build]
include = [
"visualqc/*.py",
"visualqc/resources/*",
]
exclude = [
"visualqc/tests/*",
"example_datasets/*",
"scripts/*",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "visualqc/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/visualqc",
]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.envs.default]
dependencies = [
"pytest",
"pytest-cov",
]
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=visualqc --cov=tests {args}"
no-cov = "cov --no-cov {args}"
[[tool.hatch.envs.test.matrix]]
python = ["37", "38", "39", "310", "311"]
[tool.coverage.run]
branch = true
parallel = true
omit = [
"visualqc/__init__.py",
]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]