Metadata-Version: 2.4
Name: fmri-utils
Version: 0.1.1
Summary: Helper functions and utility classes for PsychoPy scripts.
Author: Mind The Brain Lab
License-Expression: MIT
Project-URL: Homepage, https://github.com/Mind-The-Brain-Lab/fmri-utils
Project-URL: Issues, https://github.com/Mind-The-Brain-Lab/fmri-utils/issues
Keywords: fmri,psychopy,utilities
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: <3.12,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psychopy>=2026.1.3
Requires-Dist: pyserial>=3.5
Dynamic: license-file

# fmri-utils

Helper functions and utility classes for PsychoPy scripts.

## Installation

Install directly from this project directory:

```bash
pip install .
```

Or, after publishing the package:

```bash
pip install fmri-utils
```

## Usage

```python
from fmri_utils import FakeTriggerBox, TriggerBox

trigger_box = TriggerBox()
trigger_box.wait_trigger()

fake_trigger_box = FakeTriggerBox()
fake_trigger_box.wait_trigger()
```
