Metadata-Version: 2.4
Name: bidsprep
Version: 0.0.1a3
Summary: Toolkit for making MRI data BIDS compatible.
Author-email: Donisha Smith <dsmit420@jhu.edu>
License-Expression: MIT
Project-URL: Homepage, https://bidsprep-py.readthedocs.io
Project-URL: Github, https://github.com/donishadsmith/bidsprep
Project-URL: Issues, https://github.com/donishadsmith/bidsprep/issues
Keywords: python,neuroimaging,fMRI,MRI,BIDS,NIfTI
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
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: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.10.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.26.3
Requires-Dist: nibabel>=5.0.0
Requires-Dist: rich>=14.2.0
Requires-Dist: nilearn>=0.10.4
Provides-Extra: all
Requires-Dist: bidsprep[test]; extra == "all"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Dynamic: license-file

# BIDSPrep

[![Latest Version](https://img.shields.io/pypi/v/bidsprep.svg)](https://pypi.python.org/pypi/bidsprep/)
[![Python Versions](https://img.shields.io/pypi/pyversions/bidsprep.svg)](https://pypi.python.org/pypi/bidsprep/)
[![Test Status](https://github.com/donishadsmith/bidsprep/actions/workflows/testing.yaml/badge.svg)](https://github.com/donishadsmith/bidsprep/actions/workflows/testing.yaml)
[![codecov](https://codecov.io/gh/donishadsmith/bidsprep/graph/badge.svg?token=PCJ17NA627)](https://codecov.io/gh/donishadsmith/bidsprep)
[![Documentation Status](https://readthedocs.org/projects/bidsprep-py/badge/?version=latest)](http://bidsprep-py.readthedocs.io/en/latest/?badge=latest)

Tools to assist in converting non-BIDS compliant MRI datasets to BIDS compliant datasets.

## Installation
To install ``bidsprep`` use one of the following methods:

### Standard Installation
```bash
pip install bidsprep
```

### Development Version

```bash
git clone --depth 1 https://github.com/donishadsmith/bidsprep/
cd bidsprep
pip install -e .
```
