Metadata-Version: 2.1
Name: pydra-bids
Version: 0.0.8
Summary: Pydra tasks for BIDS I/O
Project-URL: documentation, https://aramis-lab.github.io/pydra-bids
Project-URL: issues, https://github.com/aramis-lab/pydra-bids/issues
Project-URL: repository, https://github.com/aramis-lab/pydra-bids
Author-email: Ghislain Vaillant <ghislain.vaillant@icm-institute.org>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: bids,neuroimaging,pydra
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Requires-Dist: ancpbids<0.3,>=0.2
Requires-Dist: pydra>=0.21
Description-Content-Type: text/markdown

# pydra-bids

[![PyPI - Version](https://img.shields.io/pypi/v/pydra-bids.svg)](https://pypi.org/project/pydra-bids)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pydra-bids.svg)](https://pypi.org/project/pydra-bids)

---

Pydra tasks for BIDS I/O.

[Pydra] is a dataflow engine which provides a set of lightweight abstractions
for DAG construction, manipulation, and distributed execution.

[BIDS] defines standards for organizing neuroimaging files and metadata.

This project provides tasks for reading from and writing to BIDS datasets.

## Development

This project is managed using [Poetry].

To install, check and test the code:

```console
make
```

To run the test suite when hacking:

```console
make test
```

To format the code before review:

```console
make format
```

To build the project's documentation:

```console
make docs
```

## Licensing

This project is released under the terms of the Apache License 2.0.

[Pydra]: https://nipype.github.io/pydra
[BIDS]: https://bids-specification.readthedocs.io
[Poetry]: https://python-poetry.org
