forked from SpikeInterface/spikeinterface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
145 lines (115 loc) · 3.01 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[project]
name = "spikeinterface"
version = "0.96.1.dev0"
authors = [
{ name="Alessio Buccino", email="[email protected]" },
{ name="Samuel Garcia", email="[email protected]" },
]
description = "Python toolkit for analysis, visualization, and comparison of spike sorting output"
readme = "README.md"
requires-python = ">=3.8,<4.0"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"neo>=0.11.1",
"joblib!=1.2",
"tqdm",
"probeinterface>=0.2.13",
]
[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-data = {"spikeinterface.sorters" = ["**/*.m", "**/*.prm", "**/*.params", "**/*.yaml"]}
[tool.setuptools.exclude-package-data]
spikeinterface = ["**/tests/test_*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["spikeinterface*"]
namespaces = false
exclude = ["spikeinterface.*.tests"]
[project.urls]
homepage = "https://github.com/SpikeInterface/spikeinterface"
repository = "https://github.com/SpikeInterface/spikeinterface"
documentation = "https://spikeinterface.readthedocs.io/"
changelog = "https://spikeinterface.readthedocs.io/en/latest/whatisnew.html"
[project.optional-dependencies]
extractors = [
"MEArec>=1.7.1",
"pynwb>=2.1.0",
"pyedflib>=0.1.30",
# "nixio>=1.5.0",
# "shybrid>=0.4.2",
# "pyyaml>=5.4.1 for shybrid",
"sonpy;python_version>'3.7'",
# lxml for neuroscope
"lxml",
]
full = [
"zarr",
"h5py",
"pandas",
"scipy",
"scikit-learn",
"networkx",
"distinctipy",
"matplotlib",
]
widgets = [
"ipympl",
"ipywidgets",
"sortingview>=0.11.0,<0.12",
]
test = [
"pytest",
"pytest-cov",
# zarr is needed for testing
"zarr",
# tridesclous
"numpy<1.24",
"numba",
"hdbscan",
# for sortingview backend
"sortingview",
# recent datalad need a too recent version for git-annex
# so we use an old one here
# datalad ==0.14.4
"datalad==0.16.2",
## install sorters ##
"tridesclous>=1.6.6.1",
## spyking-circus
"spyking-circus",
## herdingspikes
"herdingspikes<=0.3.99",
## sliding_nn
"pymde",
"torch",
"pynndescent",
# for github test : probeinterface and neo from master
# for release we need pypi, so this need to be commented
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
]
[tool.pytest.ini_options]
markers = [
"core",
"extractors",
"preprocessing",
"postprocessing",
"qualitymetrics",
"sorters",
"comparison",
"curation",
"exporters",
"widgets",
"sortingcomponents",
]