-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (62 loc) · 1.42 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
[project]
name = "jadhav-lab-to-nwb"
version = "0.0.1"
description = "NWB conversion scripts, functions, and classes for Jadhav conversion"
readme = "README.md"
authors = [{ name = "CatalystNeuro", email = "[email protected]" }]
maintainers = [{ name = "CatalystNeuro", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"neuroconv[spikegadgets,video]",
"nwbinspector",
"pre-commit",
"ipykernel",
"matplotlib",
"ndx-events==0.2.0"
]
[project.urls]
Repository="https://github.com/catalystneuro/jadhav-lab-to-nwb"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
\.toml
|\.yml
|\.md
|\.txt
|\.sh
|\.git
|\.ini
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
reverse_relative = true
known_first_party = ["jadhav_lab_to_nwb"]
[tool.codespell]
skip = '.git*,*.pdf,*.css'
check-hidden = true
ignore-words-list = 'assertin,trough'