-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.83 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
[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.11"
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",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
dependencies = ["bidsschematools>=1.0", "pyarrow>=24.0.0", "tqdm>=4.67.3"]
[project.optional-dependencies]
cloud = ["cloudpathlib[s3,gs]>=0.21.0"]
s3 = [
"cloudpathlib[s3]>=0.21.0",
] # Include s3 to not break backwards compatibility
[dependency-groups]
dev = [
"pandas==3.0.2",
"pdoc>=16.0.0",
"pre-commit>=4.6.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"ruff>=0.15.12",
]
[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"