Metadata-Version: 2.4
Name: nifti2bids
Version: 0.1.0
Summary: Post-hoc BIDS conversion toolkit for NIfTI datasets without original DICOMs.
Author-email: Donisha Smith <dsmit420@jhu.edu>
License-Expression: MIT
Project-URL: Homepage, https://nifti2bids.readthedocs.io
Project-URL: Github, https://github.com/donishadsmith/nifti2bids
Project-URL: Issues, https://github.com/donishadsmith/nifti2bids/issues
Project-URL: Changelog, https://nifti2bids.readthedocs.io/en/stable/changelog.html
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
Requires-Dist: pandas>=2.1.0
Provides-Extra: all
Requires-Dist: nifti2bids[test]; extra == "all"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Dynamic: license-file

# Nifti2Bids

[![Latest Version](https://img.shields.io/pypi/v/nifti2bids.svg)](https://pypi.python.org/pypi/nifti2bids/)
[![Python Versions](https://img.shields.io/pypi/pyversions/nifti2bids.svg)](https://pypi.python.org/pypi/nifti2bids/)
[![Source Code](https://img.shields.io/badge/Source%20Code-nifti2bids-purple)](https://github.com/donishadsmith/nifti2bids)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Test Status](https://github.com/donishadsmith/nifti2bids/actions/workflows/testing.yaml/badge.svg)](https://github.com/donishadsmith/nifti2bids/actions/workflows/testing.yaml)
[![codecov](https://codecov.io/gh/donishadsmith/nifti2bids/graph/badge.svg?token=PCJ17NA627)](https://codecov.io/gh/donishadsmith/nifti2bids)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/nifti2bids/badge/?version=stable)](http://nifti2bids.readthedocs.io/en/stable/?badge=stable)


A toolkit for post hoc BIDS-ification NIfTI datasets. Includes utilities for metadata extraction, file renaming, and JSON sidecar generation, designed primarily for datasets where the original DICOMs are unavailable.

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

### Standard Installation
```bash
pip install nifti2bids
```

### Development Version

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