-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (73 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
89 lines (73 loc) · 1.82 KB
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
[project]
name = "probeinterface"
version = "0.3.2"
authors = [
{ name="Samuel Garcia", email="sam.garcia.die@gmail.com" },
{ name="Alessio Buccino", email="alessiop.buccino@gmail.com" },
{ name="Chris Halcrow", email="chrishalcrow@gmail.com" }
]
description = "Python package to handle probe layout, geometry and wiring to device."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"packaging",
"requests"
]
[project.urls]
homepage = "https://github.com/SpikeInterface/probeinterface"
repository = "https://github.com/SpikeInterface/probeinterface"
documentation = "https://probeinterface.readthedocs.io"
changelog = "https://probeinterface.readthedocs.io/en/main/release_notes.html"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
sources = ["src"]
[dependency-groups]
test = [
"jsonschema",
"pytest",
"pytest-cov",
"matplotlib",
"scipy",
"pandas",
"h5py",
"zarr>=2.16.0,<3.0.0",
]
docs = [
"pillow",
"sphinx-gallery",
"sphinx_rtd_theme",
"matplotlib",
"scipy",
"pandas",
]
dev = [
{include-group = "test"},
{include-group = "docs"},
"pre-commit",
"tqdm", # used in resources/generate_cambridgeneurotech_library.py
"shapely", # used in resources/generate_cambridgeneurotech_library.py
]
[tool.pytest.ini_options]
markers = [
"library",
]
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.black]
line-length = 120
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.pdf,*.svg,data,./doc/releases'
check-hidden = true
# ignore-regex = ''
ignore-words-list = 'compiletime'