Metadata-Version: 2.4
Name: eegducks
Version: 0.1.0
Summary: A beginner-friendly EEG wrapper around MNE
Author-email: Your Name <you@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: mne

# eegducks 🦆

A beginner-friendly wrapper around MNE for quick EEG analysis.

## Example

```python
import eegducks as ed

raw = ed.load_and_preprocess("subject1_raw.fif")
ica = ed.run_ica(raw)
epochs = ed.make_epochs(raw)
ed.plot_bands(epochs)
