generated from uwescience/shablona
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (66 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
71 lines (66 loc) · 1.79 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
[project]
name = "ecephys"
version = "0.0.6"
authors = [
{ name="Graham Findlay", email="gfindlay@wisc.edu" }
]
description = "Python tools for extracellular electrophysiology"
readme = "README.md"
requires-python = ">=3.9,<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 = [
"brainglobe-atlasapi",
"colorcet",
"dask[complete]",
# This offers the TraceImageViewer needed for displaying CSDs, plus a few bugfixes from Tom:
"ephyviewer @ git+https://github.com/CSC-UW/ephyviewer.git",
# You can try to get away with the upstream, but TraceImageViewer is still not merged:
# "ephyviewer @ git+https://github.com/NeuralEnsemble/ephyviewer.git",
"ibl-neuropixel",
"ipykernel",
"ipympl",
"ipython",
"ipywidgets",
"kcsd @ git+https://github.com/CSC-UW/kCSD-python.git", # Until upstream/PyPI use scipy.integrate.simpson.
"mat73",
"matplotlib >= 3.7",
"numpy",
"pandas",
"polars",
"pyEDFlib",
"pyfftw",
"PySide6", # For ephyviewer
"PyYAML",
"ripple-detection",
"scikit-learn",
"scipy",
"seaborn",
"sortednp",
"spikeinterface",
"ssqueezepy",
"Statsmodels",
"tdt",
"xarray[complete]",
]
[project.optional-dependencies]
deprecated = [
"elephant", # Used by MUA spindle detection
] # Needed to run code in ecephys.deprecated
[dependency-groups]
dev = [
"pytest>=7.0.0",
"ruff",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true