Metadata-Version: 2.1
Name: pydra-compose-monai
Version: 0.1.0
Summary: Pydra compose package for wrapping BIDS Apps in Pydra tasks
Author-email: "Thomas G. Close" <tom.g.close@gmail.com>
Maintainer-email: "Thomas G. Close" <tom.g.close@gmail.com>
License:    Copyright 2021 Nipype developers
        
           Licensed under the Apache License, Version 2.0 (the "License");
           you may not use this file except in compliance with the License.
           You may obtain a copy of the License at
        
               http://www.apache.org/licenses/LICENSE-2.0
        
           Unless required by applicable law or agreed to in writing, software
           distributed under the License is distributed on an "AS IS" BASIS,
           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
           See the License for the specific language governing permissions and
           limitations under the License.
License-File: LICENSE
Keywords: pydra
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.11
Requires-Dist: docker>=7.1.0
Requires-Dist: frametree-bids
Requires-Dist: monai>=1.3
Requires-Dist: pydra>=1.0a
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Provides-Extra: doc
Requires-Dist: packaging; extra == 'doc'
Requires-Dist: sphinx-rtd-theme; extra == 'doc'
Requires-Dist: sphinx>=2.1.2; extra == 'doc'
Requires-Dist: sphinxcontrib-apidoc~=0.3.0; extra == 'doc'
Requires-Dist: sphinxcontrib-napoleon; extra == 'doc'
Requires-Dist: sphinxcontrib-versioning; extra == 'doc'
Provides-Extra: test
Requires-Dist: codecov; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-env; extra == 'test'
Requires-Dist: pytest-rerunfailures; extra == 'test'
Requires-Dist: pytest-xdist; extra == 'test'
Requires-Dist: pytest>=4.4.0; extra == 'test'
Description-Content-Type: text/markdown

# Pydra-compose-monai plugin

Pydra-compose-monai is a plugin package for the [Pydra dataflow engine](https://nipype.github.io/pydra),
which adds the feature to wrap up [MONAI Model Zoo]() into
Pydra task classes

## For developers

Install repo in developer mode from the source directory. It is also useful to
install pre-commit to take care of styling via [black](https://black.readthedocs.io/):

```bash
python3 -m pip install -e '.[dev]'
pre-commit install
```
