-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
90 lines (81 loc) · 2.12 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
authors = [{name = "Joke Durnez"}]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"numpy>=1.11.0",
"scipy>=0.17.0",
"nibabel>=2.0.2",
"pandas>=0.18.1",
"nose>=1.3.7",
"matplotlib"
]
description = "A package to perform power analyses for neuroimaging data"
# Version from setuptools_scm
dynamic = ["version"]
keywords = [
"statistics",
"power",
"fmri",
"neuroimaging",
"inference",
"samplesize"
]
license = {text = "MIT"}
maintainers = [{name = "Joke Durnez", email = "joke.durnez@gmail.com"}]
name = "neuropower"
readme = "README.md"
requires-python = ">=3.8"
[project.optional-dependencies]
# A combination of dependencies useful for developers
dev = [
"neuropower[test]",
'pre-commit',
'tox'
]
# For running unit and docstring tests
test = [
"coverage",
"pytest>=6.0.0",
"pytest-cov",
"nbmake"
]
[tool.black]
line-length = 90
[tool.codespell]
ignore-words = ".github/codespell_ignore_words.txt"
[tool.hatch.build.hooks.vcs]
version-file = "neuropower/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["neuropower"]
[tool.hatch.version]
source = "vcs"
[tool.isort]
combine_as_imports = true
line_length = 90
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