-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
77 lines (67 loc) · 1.68 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "bids2table"
description = "Efficiently index large-scale BIDS datasets and derivatives"
authors = [
{name = "Connor Lane", email = "connor.lane858@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"elbow",
"nibabel",
"pandas",
"bidsschematools",
"typing_extensions",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
dev = [
"pdoc==14.0.0",
"black==23.3.0",
"flake8==5.0.4",
"isort==5.11.5",
"mypy==1.2.0",
"pre-commit",
"pylint>=2.5.0",
"setuptools-scm",
]
[project.urls]
"Homepage" = "https://github.com/childmindresearch/bids2table"
[project.scripts]
bids2table = "bids2table.__main__:main"
b2t = "bids2table.__main__:main"
[tool.setuptools.packages.find]
include = ["bids2table*"]
[tool.setuptools_scm]
write_to = "bids2table/_version.py"
[tool.black]
line-length = 88
target_version = ['py37']
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
[tool.mypy]
no_strict_optional = true
ignore_missing_imports = true