This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
forked from bids-standard/pybids-refactor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (83 loc) · 1.96 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]
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.7"
license = { file="LICENSE" }
authors = [
{ name = "PyBIDS Developers", email = "[email protected]" },
]
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",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
"nibabel >=2.1",
"pandas >=0.23",
"formulaic >=0.2.4, <0.6", # Tested on 0.2.4-0.5.2
"sqlalchemy <1.4.0.dev0",
"bids-validator",
"num2words",
"click >=8.0",
]
dynamic = ["version"]
[project.optional-dependencies]
doc = [
"sphinx >=2.2, !=5.1.0",
"numpydoc",
"sphinx_rtd_theme",
"myst_nb",
"jupytext",
]
plotting = ["graphviz"]
test = [
"pytest >=3.3",
"pytest-cov",
"bsmschema",
"coverage[toml]",
]
tutorial = [
"nbconvert",
"jinja2 <3", # Required until nbconvert handles all deprecations/removals
"markupsafe <2.1", # Required until we can upgrade jinja2
"jupyter_client",
"ipykernel",
]
ci_tests = ["pybids[test]", "codecov", "pytest-xdist"]
# Aliases
docs = ["pybids[doc]"]
tests = ["pybids[test]"]
dev = ["pybids[doc,test,plotting]"]
[project.urls]
Homepage = "http://github.com/bids-standard/pybids"
"Bug Tracker" = "http://github.com/bids-standard/pybids/issues"
[project.scripts]
pybids = "bids.cli:cli"
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "bids/_version.py"
versionfile_build = "bids/_version.py"
[tool.coverage.run]
branch = true
source = ["bids/*"]
include = ["bids/*"]
omit = [
"*/setup.py",
"*/external/*",
"*/due.py",
"*/*version.py",
]
[tool.coverage.report]
include = ["bids/*"]