Metadata-Version: 2.4
Name: nf-python-plugin
Version: 0.1.1
Summary: A Python package for seamless, type-safe, and version-aware integration between Nextflow and Python scripts.
Author-email: Roy Jacobson <roy.jacobson@weizmann.ac.il>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/royjacobson/nf-python
Project-URL: Issues, https://github.com/royjacobson/nf-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: COPYING
Dynamic: license-file

# nf-python: Nextflow Python Integration

A Python package for seamless, type-safe, and version-aware integration between Nextflow and Python scripts.

## Usage

```python
import nf_python

print(nf_python.args)
print(nf_python.opts)
nf_python.output(result=42)
```

See the Nextflow plugin documentation for details.
