-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.12 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
[project]
name = "spikeinterface_pipelines"
version = "0.0.11"
description = "Collection of standardized analysis pipelines based on SpikeInterfacee."
readme = "README.md"
authors = [
{ name = "Alessio Buccino", email = "alessiop.buccino@gmail.com" },
{ name = "Jeremy Magland", email = "jmagland@flatironinstitute.org" },
{ name = "Luiz Tauffer", email = "luiz.tauffer@catalystneuro.com" },
]
requires-python = ">=3.8"
dependencies = [
"spikeinterface[full,widgets]>=0.100.0",
"neo>=0.12.0",
"pydantic>=2.4.2",
"sortingview>=0.13.1",
"kachery_cloud>=0.4.7",
]
keywords = [
"spikeinterface",
"spike sorting",
"electrophysiology",
"neuroscience",
]
[project.urls]
homepage = "https://github.com/SpikeInterface/spikeinterface_pipelines"
documentation = "https://github.com/SpikeInterface/spikeinterface_pipelines"
repository = "https://github.com/SpikeInterface/spikeinterface_pipelines"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 120