Metadata-Version: 2.4
Name: cwl2ogc
Version: 0.19.0
Summary: CWL Worflow inputs/outputs to OGC API Processes inputs/outputs
Project-URL: Documentation, https://eoap.github.io/cwl2ogc/
Project-URL: Issues, https://github.com/eoap/cwl2ogc/issues
Project-URL: Source, https://github.com/eoap/cwl2ogc
Author-email: Fabrice Brito <info@terradue.com>, Simone Tripodi <info@terradue.com>
License-Expression: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
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: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Requires-Dist: cwl-utils==0.42
Requires-Dist: loguru==0.7.3
Description-Content-Type: text/markdown

# cwl2ogc

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

`cwl2ogc` converts CWL workflow/tool inputs and outputs into:
- OGC API - Processes I/O descriptors
- JSON Schema documents for those I/O definitions

This is useful when publishing CWL-based application packages through OGC API - Processes interfaces.

## Why

The OGC API - Processes Deploy/Replace/Undeploy workflow requires a process description that exposes valid input and output metadata. `cwl2ogc` helps generate that description directly from CWL definitions.

## Installation

```bash
pip install cwl2ogc
```

Python `3.10+` is required.

## Quick Start (CLI)

Generate a process descriptor from a CWL document:

```bash
cwl2ogc tests/artifacts/cwl-types/inp.cwl \
  --workflow-id inp \
  --output process.json
```

Show command help:

```bash
cwl2ogc --help
```

## Quick Start (Python API)

```python
from cwl_utils.parser import load_document_by_uri
from cwl2ogc import BaseCWLtypes2OGCConverter

workflow = load_document_by_uri("tests/artifacts/cwl-types/inp.cwl#inp")
converter = BaseCWLtypes2OGCConverter(workflow)

inputs = converter.get_inputs()
outputs = converter.get_outputs()

inputs_json_schema = converter.get_inputs_json_schema()
outputs_json_schema = converter.get_outputs_json_schema()
```

## Playground

Requirements:
- `docker`
- `task`

Run the published playground image:

```bash
task run-playground
```

Build and run the local playground image:

```bash
task run-playground-dev
```

Open [http://127.0.0.1](http://127.0.0.1).

## Development

Install development tooling with Hatch and run checks:

```bash
hatch run test:test-q
hatch run dev:check
hatch run dev:lint
```

Equivalent Taskfile targets:

```bash
task test
task check
task lint
```

## Documentation

Project docs: https://eoap.github.io/cwl2ogc/

CLI docs: [docs/cli.md](docs/cli.md)

## Contributing

Issues and pull requests are welcome:
https://github.com/eoap/cwl2ogc/issues

### Local quality checks

Install [Hatch](https://hatch.pypa.io/) and [Taskfiles](https://taskfile.dev/docs/guide) then install the Git hook:

```console
task quality:pre-commit:install
```

Every commit runs Ruff (including the configured McCabe complexity limit),
Ruff formatting, strict mypy checks, and the pytest suite.
Run the complete hook explicitly with:

```console
task quality:pre-commit:run
```

## License

[![Apache License, Version 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-blue)](https://www.apache.org/licenses/LICENSE-2.0)
