-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.44 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "giga_auto_qc"
description = "A package"
readme = "README.md"
requires-python = ">=3.8"
license = { text="MIT" }
authors = [
{ name="Hao-Ting Wang", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"nilearn",
"pybids >=0.15.0, <0.16.0",
"templateflow < 0.8.1",
]
dynamic = ["version"]
[project.scripts]
giga_auto_qc = "giga_auto_qc.run:main"
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"giga_auto_qc[test]",
]
test = [
"pytest",
"pytest-cov",
]
# Aliases
tests = ["giga_auto_qc[test]"]
[project.urls]
"Homepage" = "https://github.com/simexp/giga_auto_qc"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "giga_auto_qc/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["giga_auto_qc"]
exclude = [
".github",
"giga_auto_qc/data/test_data",
]
[tool.black]
target-version = ['py38']
exclude = "giga_auto_qc/_version.py"
line_length = 79
[tool.pytest.ini_options]
markers = [
"smoke: smoke tests that will run on a downsampled real dataset (deselect with '-m \"not smoke\"')",
]