Metadata-Version: 2.1
Name: ewoksorange
Version: 0.7.0rc0
Summary: Orange binding for Ewoks
Home-page: https://gitlab.esrf.fr/workflow/ewoks/ewoksorange/
Author: ESRF
Author-email: wout.de_nolf@esrf.fr
License: MIT
Project-URL: Source, https://gitlab.esrf.fr/workflow/ewoks/ewoksorange/
Project-URL: Documentation, https://ewoksorange.readthedocs.io/
Project-URL: Tracker, https://gitlab.esrf.fr/workflow/ewoks/ewoksorange/issues/
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: ewokscore>=0.4.1
Requires-Dist: orange-canvas-core
Requires-Dist: orange-widget-base
Requires-Dist: importlib-resources; python_version < "3.9"
Provides-Extra: full
Requires-Dist: PyQt5; extra == "full"
Provides-Extra: test
Requires-Dist: PyQt5; extra == "test"
Requires-Dist: pytest>=7; extra == "test"
Provides-Extra: dev
Requires-Dist: PyQt5; extra == "dev"
Requires-Dist: pytest>=7; extra == "dev"
Requires-Dist: black>=22; extra == "dev"
Requires-Dist: flake8>=4; extra == "dev"
Provides-Extra: doc
Requires-Dist: PyQt5; extra == "doc"
Requires-Dist: pytest>=7; extra == "doc"
Requires-Dist: sphinx>=4.5; extra == "doc"
Requires-Dist: sphinx-autodoc-typehints>=1.16; extra == "doc"
Provides-Extra: orange
Requires-Dist: Orange3; extra == "orange"

# ewoksorange

*ewoksorange* provides s desktop graphical interface for [ewoks](https://ewoks.readthedocs.io/).

## Install

```bash
pip install ewoksorange[test]
```

When using Oasys instead of Orange3

```bash
pip install oasys1
pip install AnyQt
pip install importlib_resources  # python_version < "3.9"
pip install ewokscore
pip install pytest
pip install --no-deps ewoksorange
```

## Test

```bash
pytest --pyargs ewoksorange.tests
```

## Getting started

Launch the Orange canvas

```bash
ewoks-canvas /path/to/orange_wf.ows
```

or equivalently

```bash
python3 -m ewoksorange.canvas /path/to/orange_wf.ows
```

When Orange3 is installed you can also launch the native Orange CLI

```bash
orange-canvas /path/to/orange_wf.ows [--config ewoksorange.canvas.config.Config]
```

or equivalently

```bash
python3 -m Orange.canvas /path/to/orange_wf.ows [--config ewoksorange.canvas.config.Config]
```

Launch the Orange canvas using the Ewoks CLI

```bash
ewoks execute /path/to/ewoks_wf.json --engine orange
ewoks execute /path/to/orange_wf.ows --engine orange
```

or equivalently

```bash
python3 -m ewoks execute /path/to/ewoks_wf.json --engine orange
python3 -m ewoks execute /path/to/orange_wf.ows --engine orange
```

Launch the Orange canvas with the examples add-on

```bash
ewoks-canvas --with-examples
```

## Documentation

https://ewoksorange.readthedocs.io/
