eegdash 0.0.3__tar.gz → 0.0.7__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: eegdash
3
- Version: 0.0.3
3
+ Version: 0.0.7
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,14 @@ 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: signalstore
35
+ Requires-Dist: xarray
36
+ Requires-Dist: python-dotenv
37
+ Requires-Dist: s3fs
38
+ Requires-Dist: mne
39
+ Requires-Dist: pynwb
40
+ Requires-Dist: h5py
41
+ Requires-Dist: pymongo
42
+ Requires-Dist: joblib
36
43
 
37
44
  # EEG-Dash
38
45
  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.3"
7
+ version = "0.0.7"
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,14 @@ classifiers = [
19
19
  "Operating System :: OS Independent",
20
20
  ]
21
21
  dependencies = [
22
- "signalstore"
22
+ "xarray",
23
+ "python-dotenv",
24
+ "s3fs",
25
+ "mne",
26
+ "pynwb",
27
+ "h5py",
28
+ "pymongo",
29
+ "joblib",
23
30
  ]
24
31
  [project.urls]
25
32
  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
3
+ Version: 0.0.7
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,14 @@ 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: signalstore
35
+ Requires-Dist: xarray
36
+ Requires-Dist: python-dotenv
37
+ Requires-Dist: s3fs
38
+ Requires-Dist: mne
39
+ Requires-Dist: pynwb
40
+ Requires-Dist: h5py
41
+ Requires-Dist: pymongo
42
+ Requires-Dist: joblib
36
43
 
37
44
  # EEG-Dash
38
45
  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
@@ -0,0 +1,8 @@
1
+ xarray
2
+ python-dotenv
3
+ s3fs
4
+ mne
5
+ pynwb
6
+ h5py
7
+ pymongo
8
+ joblib
@@ -0,0 +1,2 @@
1
+ DomainModels
2
+ eegdash
@@ -1 +0,0 @@
1
- from eegdash.main import EEGDash
@@ -1 +0,0 @@
1
- signalstore
@@ -1,4 +0,0 @@
1
- DomainModels
2
- __init__
3
- data_utils
4
- main
File without changes
File without changes
File without changes
File without changes