eegdash 0.3.9.dev182388821__py3-none-any.whl → 0.4.0__py3-none-any.whl

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/__init__.py CHANGED
@@ -1,3 +1,14 @@
1
+ # Authors: The EEGDash contributors.
2
+ # License: GNU General Public License
3
+ # Copyright the EEGDash contributors.
4
+
5
+ """EEGDash: A comprehensive platform for EEG data management and analysis.
6
+
7
+ EEGDash provides a unified interface for accessing, querying, and analyzing large-scale
8
+ EEG datasets. It integrates with cloud storage, MongoDB databases, and machine learning
9
+ frameworks to streamline EEG research workflows.
10
+ """
11
+
1
12
  from .api import EEGDash, EEGDashDataset
2
13
  from .dataset import EEGChallengeDataset
3
14
  from .hbn import preprocessing
@@ -7,4 +18,4 @@ _init_mongo_client()
7
18
 
8
19
  __all__ = ["EEGDash", "EEGDashDataset", "EEGChallengeDataset", "preprocessing"]
9
20
 
10
- __version__ = "0.3.9.dev182388821"
21
+ __version__ = "0.4.0"