generated from uwescience/shablona
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.58 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
[project]
name = "ecephys"
version = "0.0.6"
authors = [
{ name="Graham Findlay", email="[email protected]" }
]
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 = [
"bg-atlasapi",
"chardet",
"colorcet",
"dask[complete]", # 2024.2.1 was the last dask relase supporting pandas < 2, but cannot be used with Python >= 3.11.9
"dask-image",
"deepdiff",
"docopt",
"elephant",
"ephyviewer",
"horology",
"ibl-neuropixel",
"ipykernel",
"ipympl",
"ipython",
"ipywidgets",
"kcsd",
"mat73",
"matplotlib >= 3.7",
"numpy",
"pandas", # 1.5.3 was the last pandas release before 2.0.0.
"pyEDFlib",
"pyfftw",
"PyYAML",
"ripple-detection",
"scikit-learn",
"scipy",
"seaborn",
"sortednp",
"spikeinterface",
"ssqueezepy @ git+https://github.com/OverLordGoldDragon/ssqueezepy.git", # Until 0.6.6 is on PyPI
"Statsmodels",
"tdt",
"xarray[complete]",
"yasa",
]
[project.optional-dependencies]
dev = [
"black",
"altair",
]
[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.setuptools]
packages = ["ecephys"]