-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (67 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
78 lines (67 loc) · 1.85 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bids2table"
dynamic = ["version"]
authors = [
{ name = "Connor Lane", email = "connor.lane858@gmail.com" },
]
description = "Index BIDS datasets fast, locally or in the cloud."
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"bidsschematools>=1.0",
"pyarrow>=14.0.2",
"tqdm>=4.66.2",
]
[project.optional-dependencies]
s3 = [
"cloudpathlib[s3]>=0.17.0",
]
[dependency-groups]
dev = [
"ipython>=9.2.0",
"jupyter>=1.1.1",
"pandas==2.2.3",
"pdoc>=15.0.3",
"pre-commit>=4.1.0",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"ruff>=0.9.10",
]
[project.urls]
"Homepage" = "https://github.com/childmindresearch/bids2table"
"Issues" = "https://github.com/childmindresearch/bids2table/issues"
[project.scripts]
bids2table = "bids2table.__main__:main"
b2t2 = "bids2table.__main__:main"
[tool.setuptools.packages.find]
include = ["bids2table*"]
[tool.setuptools_scm]
version_file = "bids2table/_version.py"
[tool.ruff]
line-length = 88
target-version = "py312"
lint.extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"