-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
87 lines (78 loc) · 2.17 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
[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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"scikit-learn>0.15.0",
"rich",
"reportlab",
"pdfrw",
"matplotlib"
]
description = "Package for design optimisation for fMRI experiments"
# Version from setuptools_scm
dynamic = ["version"]
license = {text = "MIT"}
maintainers = [{name = "Joke Durnez", email = "[email protected]"}]
name = "neurodesign"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
# A combination of dependencies useful for developers
dev = [
"neurodesign[doc,test]",
'pre-commit',
'tox'
]
# Requirements necessary for building the documentation
doc = [
"sphinx",
"sphinx-copybutton"
]
# 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"
skip = "examples/comparison_neurodesign.html,examples/comparison_neurodesign.ipynb"
[tool.hatch.build.hooks.vcs]
version-file = "neurodesign/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["neurodesign"]
[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