This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.52 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydra-bids"
version = "0.0.10"
description = "Pydra tasks for BIDS I/O"
readme = "README.md"
requires-python = ">=3.7"
license = "Apache-2.0"
keywords = [
"pydra",
"bids",
"neuroimaging",
]
authors = [
{name = "Ghislain Vaillant", email = "ghislain.vaillant@icm-institute.org"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pydra >=0.21",
"ancpbids >=0.2,<0.3",
]
[project.urls]
documentation = "https://aramis-lab.github.io/pydra-bids"
issues = "https://github.com/aramis-lab/pydra-bids/issues"
repository = "https://github.com/aramis-lab/pydra-bids"
[tool.hatch.build.targets.wheel]
only-include = ["pydra/tasks/bids"]
[tool.black]
extend-exclude = "docs"
[tool.codespell]
quiet-level = 3
skip = ".git"
[tool.isort]
profile = "black"
atomic = true
extend_skip = ["docs"]
src_paths = ["pydra"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--doctest-modules",
"--doctest-continue-on-failure",
]
testpaths = ["pydra"]