eegdash 0.0.3__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of eegdash might be problematic. Click here for more details.
- {eegdash-0.0.3 → eegdash-0.0.6}/PKG-INFO +10 -2
- {eegdash-0.0.3 → eegdash-0.0.6}/pyproject.toml +10 -2
- eegdash-0.0.6/src/eegdash/__init__.py +1 -0
- {eegdash-0.0.3 → eegdash-0.0.6}/src/eegdash.egg-info/PKG-INFO +10 -2
- {eegdash-0.0.3 → eegdash-0.0.6}/src/eegdash.egg-info/SOURCES.txt +3 -3
- eegdash-0.0.6/src/eegdash.egg-info/requires.txt +9 -0
- eegdash-0.0.6/src/eegdash.egg-info/top_level.txt +2 -0
- eegdash-0.0.3/src/__init__.py +0 -1
- eegdash-0.0.3/src/eegdash.egg-info/requires.txt +0 -1
- eegdash-0.0.3/src/eegdash.egg-info/top_level.txt +0 -4
- {eegdash-0.0.3 → eegdash-0.0.6}/LICENSE +0 -0
- {eegdash-0.0.3 → eegdash-0.0.6}/README.md +0 -0
- {eegdash-0.0.3 → eegdash-0.0.6}/setup.cfg +0 -0
- {eegdash-0.0.3/src → eegdash-0.0.6/src/eegdash}/data_utils.py +0 -0
- {eegdash-0.0.3/src → eegdash-0.0.6/src/eegdash}/main.py +0 -0
- {eegdash-0.0.3 → eegdash-0.0.6}/src/eegdash.egg-info/dependency_links.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eegdash
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: EEG data for machine learning
|
|
5
5
|
Author-email: Young Truong <dt.young112@gmail.com>, Arnaud Delorme <adelorme@gmail.com>
|
|
6
6
|
License: GNU General Public License
|
|
@@ -32,7 +32,15 @@ Classifier: Operating System :: OS Independent
|
|
|
32
32
|
Requires-Python: >=3.8
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: zarr==2.18.3
|
|
36
|
+
Requires-Dist: xarray
|
|
37
|
+
Requires-Dist: python-dotenv
|
|
38
|
+
Requires-Dist: s3fs
|
|
39
|
+
Requires-Dist: mne
|
|
40
|
+
Requires-Dist: pynwb
|
|
41
|
+
Requires-Dist: h5py
|
|
42
|
+
Requires-Dist: pymongo
|
|
43
|
+
Requires-Dist: joblib
|
|
36
44
|
|
|
37
45
|
# EEG-Dash
|
|
38
46
|
To leverage recent and ongoing advancements in large-scale computational methods and to ensure the preservation of scientific data generated from publicly funded research, the EEG-DaSh data archive will create a data-sharing resource for MEEG (EEG, MEG) data contributed by collaborators for machine learning (ML) and deep learning (DL) applications.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "eegdash"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.6"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Young Truong", email="dt.young112@gmail.com" },
|
|
10
10
|
{ name="Arnaud Delorme", email="adelorme@gmail.com" },
|
|
@@ -19,7 +19,15 @@ classifiers = [
|
|
|
19
19
|
"Operating System :: OS Independent",
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
|
-
|
|
22
|
+
"zarr==2.18.3",
|
|
23
|
+
"xarray",
|
|
24
|
+
"python-dotenv",
|
|
25
|
+
"s3fs",
|
|
26
|
+
"mne",
|
|
27
|
+
"pynwb",
|
|
28
|
+
"h5py",
|
|
29
|
+
"pymongo",
|
|
30
|
+
"joblib",
|
|
23
31
|
]
|
|
24
32
|
[project.urls]
|
|
25
33
|
Homepage = "https://github.com/sccn/EEG-Dash-Data"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import EEGDash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eegdash
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: EEG data for machine learning
|
|
5
5
|
Author-email: Young Truong <dt.young112@gmail.com>, Arnaud Delorme <adelorme@gmail.com>
|
|
6
6
|
License: GNU General Public License
|
|
@@ -32,7 +32,15 @@ Classifier: Operating System :: OS Independent
|
|
|
32
32
|
Requires-Python: >=3.8
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: zarr==2.18.3
|
|
36
|
+
Requires-Dist: xarray
|
|
37
|
+
Requires-Dist: python-dotenv
|
|
38
|
+
Requires-Dist: s3fs
|
|
39
|
+
Requires-Dist: mne
|
|
40
|
+
Requires-Dist: pynwb
|
|
41
|
+
Requires-Dist: h5py
|
|
42
|
+
Requires-Dist: pymongo
|
|
43
|
+
Requires-Dist: joblib
|
|
36
44
|
|
|
37
45
|
# EEG-Dash
|
|
38
46
|
To leverage recent and ongoing advancements in large-scale computational methods and to ensure the preservation of scientific data generated from publicly funded research, the EEG-DaSh data archive will create a data-sharing resource for MEEG (EEG, MEG) data contributed by collaborators for machine learning (ML) and deep learning (DL) applications.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
LICENSE
|
|
2
2
|
README.md
|
|
3
3
|
pyproject.toml
|
|
4
|
-
src/__init__.py
|
|
5
|
-
src/data_utils.py
|
|
6
|
-
src/main.py
|
|
4
|
+
src/eegdash/__init__.py
|
|
5
|
+
src/eegdash/data_utils.py
|
|
6
|
+
src/eegdash/main.py
|
|
7
7
|
src/eegdash.egg-info/PKG-INFO
|
|
8
8
|
src/eegdash.egg-info/SOURCES.txt
|
|
9
9
|
src/eegdash.egg-info/dependency_links.txt
|
eegdash-0.0.3/src/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from eegdash.main import EEGDash
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
signalstore
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|