generated from ArcanaFramework/frametree-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 2.02 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "frametree-bids"
description = "An FrameTree extension for interacting with Brain Imaging Structure (BIDS) datasets and associated \"Apps\""
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"frametree",
"fileformats[extended] >= 0.3.3",
"fileformats-medimage[extended] >= 0.2.1",
"jq >=1.4.0",
]
license = { file = "LICENSE" }
authors = [{ name = "Thomas G. Close", email = "[email protected]" }]
maintainers = [{ name = "Thomas G. Close", email = "[email protected]" }]
keywords = ["frametree"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "codespell", "flake8", "flake8-pyproject", "pre-commit"]
doc = [
"docutils>=0.10",
"furo>=2022.2.14.1",
"mock>1.0",
"numpydoc>=0.6.0",
"packaging",
"sphinx >=2.1.2",
"sphinx-argparse>=0.2.0",
"sphinx-click>=3.1",
]
test = [
"fileformats-testing",
"pipeline2app",
"medimages4tests >=0.3",
"pytest>=5.4.3",
"pytest-cov>=2.12.1",
"pytest-env>=0.6.2",
]
[project.urls]
documentation = "https://frametree.readthedocs.io"
repository = "https://github.com/ArcanaFramework/frametree-bids.git"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "frametree/bids/_version.py"
[tool.hatch.build]
packages = ["frametree"]
exclude = ["/tests"]
[tool.black]
line-length = 88
target-version = ["py38"]
exclude = "_version.py"
[tool.codespell]
ignore-words = ".codespell-ignorewords"