-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (72 loc) · 1.66 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
[project]
name = "kind-lab-to-nwb"
version = "0.0.1"
description = "NWB conversion scripts, functions, and classes for Kind lab 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",
"nwbinspector",
]
[project.urls]
Repository="https://github.com/catalystneuro/kind-lab-to-nwb"
[project.optional-dependencies]
arc_ecephys_2024 = [
"neuroconv==0.6.5" # Pinned dependencies to specific versions
]
[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 = ["kind_lab_to_nwb"]
[tool.codespell]
skip = '.git*,*.pdf,*.css'
check-hidden = true
ignore-words-list = 'assertin'
[tool.ruff]
[tool.ruff.lint]
select = [
#"F401", # Unused import
"I", # All isort rules
]
fixable = ["ALL"]
[tool.ruff.lint.isort]
relative-imports-order = "closest-to-furthest"
known-first-party = ["neuroconv"]