-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
46 lines (43 loc) · 1022 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["notebooks"] # empty by default
[project]
name = "sleepeegpy"
version = "0.6.0"
authors = [
{name = "Gennadiy Belonosov", email = "[email protected]"},
{name = "Rotem Falach", email = '[email protected]'}
]
description = "Sleep EEG preprocessing, analysis and visualization"
readme = "README.md"
requires-python = ">=3.10, <3.12"
license = {text = "MIT"}
keywords = ['sleep', 'eeg']
dependencies = [
"attrs",
"mne~=1.6.0",
"mne-qt-browser",
"pyqt5",
"yasa~=0.6.5",
"fooof",
"lspopt",
"ipympl",
"numpy~=1.25.2",
"pandas",
"matplotlib~=3.8.0",
"scipy",
"natsort",
"more-itertools",
"h5io",
"loguru",
"pooch",
"tqdm",
"pyprep~=0.4.3",
"ipywidgets",
"ipython"
]
[project.urls]
Homepage = "https://github.com/NirLab-TAU/sleepeegpy"
Documentation = "https://nirlab-tau.github.io/sleepeegpy/"