-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (101 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
111 lines (101 loc) · 2.42 KB
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
109
110
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "pybids"
description = "bids: interface with datasets conforming to BIDS"
readme = "README.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
authors = [
{ name = "PyBIDS Developers", email = "bids-discussion@googlegroups.com" },
]
keywords = ["BIDS", "neuroimaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy >=1.25", # SPEC 0 + 1yr (3yr)
"scipy >=1.11", # SPEC 0 + 1yr (3yr)
"nibabel >=5.1", # SPEC 0 + 1yr (3yr)
"pandas >=2.0", # SPEC 0 + 1yr (3yr)
"formulaic >=0.3",
"sqlalchemy >=1.4.31",
"bids-validator>=1.14.7", # Keep up-to-date to ensure support for recent modalities
"bidsschematools>=1.1.0", # Required for schema-based configs
"num2words >=0.5.10",
"click >=8.0",
"universal_pathlib >=0.2.2",
"frozendict >=2.3",
]
dynamic = ["version"]
[project.optional-dependencies]
doc = [
"sphinx >=6.2",
"numpydoc",
"sphinx_rtd_theme",
"myst_nb",
"jupytext",
]
plotting = ["graphviz"]
test = [
"pytest >= 8",
"pytest-cov >= 7",
"bsmschema >= 0.1",
"coverage[toml] >= 7",
"altair >= 5",
"pytest-xdist >= 3.8",
"s3fs >= 2025" #for testing remote uri
]
model_reports = [
"jinja2",
"altair"
]
tutorial = [
"nbconvert",
"jinja2",
"markupsafe",
"jupyter_client",
"ipykernel",
]
# Aliases
docs = ["pybids[doc]"]
tests = ["pybids[test]"]
ci_tests = ["pybids[test]"]
dev = ["pybids[doc,test,plotting]"]
[project.urls]
Homepage = "https://github.com/bids-standard/pybids"
"Bug Tracker" = "https://github.com/bids-standard/pybids/issues"
[project.scripts]
pybids = "bids.cli:cli"
[tool.setuptools.package-data]
"*" = ["data/*", "data/*/*"]
"bids.layout.config" = ["*.json"]
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "src/bids/_version.py"
versionfile_build = "bids/_version.py"
[tool.coverage.run]
branch = true
source = ["src/", "tests/"]
omit = [
"*/setup.py",
"*/external/*",
"*/due.py",
"*/*version.py",
]
[tool.coverage.paths]
source = [
"src/bids",
"**/site-packages/bids",
]
[tool.coverage.report]
include = ["src/*", "tests/*"]