-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
121 lines (105 loc) · 2.83 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "ndx-hed"
dynamic = ["version"]
authors = [
{ name="Ryan Ly", email="rly@lbl.gov" },
{ name="Oliver Ruebel", email="oruebel@lbl.gov" },
{ name="Kay Robbins", email="kay.robbins@utsa.edu" },
{ name="Ian Callanan", email="ianrcallanan@gmail.com"}
]
description = "NWB extension for HED data"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD-3"}
classifiers = [
# TODO: add classifiers before release
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
]
keywords = [
'NeurodataWithoutBorders',
'NWB',
'nwb-extension',
'ndx-extension',
]
dependencies = [
"pynwb>=2.8.0",
"hdmf>=3.14.1",
"hedtools>=0.5.0"
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
# TODO: add URLs before release
[project.urls]
"Homepage" = "https://github.com/hed-standard/ndx-hed"
"Documentation" = "https://www.hed-resources.org/en/latest/HedAnnotationInNWB.html"
"Bug Tracker" = "https://github.com/hed-standard/ndx-hed/issues"
"Discussions" = "https://github.com/hed-standard/ndx-hed/discussions"
"Changelog" = "https://github.com/hed-standard/ndx-hed/CHANGELOG.md"
[tool.hatch.build]
include = [
"src/pynwb",
"spec/ndx-hed.extensions.yaml",
"spec/ndx-hed.namespace.yaml",
]
exclude = [
"src/pynwb/tests",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/pynwb/ndx_hed",
"spec"
]
[tool.hatch.build.targets.wheel.sources]
"spec" = "ndx_hed/spec"
[tool.hatch.build.targets.sdist]
include = [
"src/pynwb",
"spec/ndx-hed.extensions.yaml",
"spec/ndx-hed.namespace.yaml",
"docs",
]
exclude = []
[tool.pytest.ini_options]
# addopts = "--cov --cov-report html"
[tool.codespell]
skip = "htmlcov,.git,.mypy_cache,.pytest_cache,.coverage,*.pdf,*.svg,venvs,.tox,hdmf-common-schema,./docs/_build/*,*.ipynb"
[tool.coverage.run]
branch = true
source = ["src/pynwb"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"@abstract"
]
[tool.black]
line-length = 120
preview = true
exclude = ".git|.mypy_cache|.tox|.venv|venv|.ipynb_checkpoints|_build/|dist/|__pypackages__|.ipynb|docs/"
[tool.ruff]
lint.select = ["E", "F", "T100", "T201", "T203"]
exclude = [
".git",
".tox",
"__pycache__",
"build/",
"dist/",
]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"src/spec/create_extension_spec.py" = ["T201"]
[tool.ruff.lint.mccabe]
max-complexity = 17