Metadata-Version: 2.4
Name: meeg_qc
Version: 0.9.8
Summary: MEEGqc: meta-package that installs meg_qc (the MEG and EEG quality control tool, formerly MEGqc).
Author: Karel Lopez Vilaret, Evgeniia Gapontseva, Aaron Reer, Jorge Bosch, Erdal Karaca
Author-email: Karel Lopez Vilaret <karel.mauricio.lopez.vilaret@uni-oldenburg.de>
Maintainer-email: "ANCP Lab, University of Oldenburg" <karel.mauricio.lopez.vilaret@uni-oldenburg.de>
License-Expression: MIT
Project-URL: Homepage, https://github.com/ANCPLabOldenburg/MEEGqc
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Requires-Python: <3.15,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: meg_qc==0.9.8
Dynamic: license-file

# meeg-qc

`meeg-qc` is the new name for the MEG and EEG quality control tool previously published as `meg-qc` (and branded as MEGqc). The lab has rebranded to **MEEGqc** to reflect first-class EEG support alongside MEG.

This distribution is a thin meta-package: installing it pulls in `meg-qc`, which is where all the code, CLI entry points, and package data live.

## Install

```bash
pip install meeg-qc
```

is equivalent to:

```bash
pip install meg-qc
```

Both deliver the same installed result: the `meg_qc` Python package plus every CLI entry point in both naming families (`megqc`, `run-megqc`, `run-megqc-plotting`, `get-megqc-config`, `globalqualityindex`, **and** the new `meegqc`, `run-meeqc`, `run-meeqc-plotting`, `get-meeqc-config` aliases that point at the same underlying functions).

The Python import name remains `meg_qc`:

```python
import meg_qc        # works
import meeg_qc       # does NOT work - intentional, no module shim
```

## Why two distributions?

- `meg-qc` is the canonical, long-standing PyPI name. Existing users, CI pipelines, and shell aliases keep working with no change.
- `meeg-qc` is the rebrand-aligned name for new users discovering the tool under its current branding.

Both ship from the same source repository (`ANCPLabOldenburg/MEEGqc`) and are released together at the same version.

## Source

https://github.com/ANCPLabOldenburg/MEEGqc

## License

MIT - see `LICENSE`.
