-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
86 lines (75 loc) · 1.92 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
authors = [{name = "Camille Maumet"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"rdflib>=4.2.0",
"rdflib-jsonld",
"prov>=1.5.0",
"nibabel",
"numpy",
"future",
"requests",
"pyld",
"vcrpy"
]
description = "Export of neuroimaging statistical results using NIDM as specified at http://nidm.nidash.org/specs/nidm-results.html."
# Version from setuptools_scm
dynamic = ["version"]
keywords = [
"Prov",
"NIDM",
"Provenance"
]
license = {text = "MIT"}
maintainers = [{name = "Camille Maumet", email = "[email protected]"}]
name = "nidmresults"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
# A combination of dependencies useful for developers
dev = [
"tox",
"nidmresults[test]",
"pre-commit"
]
# For running unit and docstring tests
test = [
"coverage",
"pytest>=6.0.0",
"pytest-cov"
]
[project.scripts]
nidm_mkda_convert = "nidmresults.cli.nidm_mkda_convert:main"
nidmreader = "nidmresults.cli.nidmreader:main"
nidmresults = "nidmresults.cli.nidmresults:main"
[project.urls]
Development = "https://github.com/incf-nidash/nidmresults"
[tool.black]
line-length = 79
[tool.codespell]
ignore-words-list = "fwe,re-use,nd"
skip = ".git,*.pdf,*.svg"
[tool.hatch.build.hooks.vcs]
version-file = "nidmresults/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["nidmresults"]
[tool.hatch.version]
source = "vcs"
[tool.isort]
combine_as_imports = true
line_length = 79
profile = "black"
skip_gitignore = true
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers --doctest-modules --showlocals -s -vv --durations=0"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"
junit_family = "xunit2"
minversion = "6.0"
xfail_strict = true