Metadata-Version: 2.1
Name: ewoks
Version: 0.0.1a2
Summary: ESRF Workflow System
Home-page: https://gitlab.esrf.fr/workflow/ewoks/ewoks
Author: ESRF
Author-email: wout.de_nolf@esrf.fr
License: MIT
Project-URL: Source, https://gitlab.esrf.fr/workflow/ewoks/ewoks
Project-URL: Documentation, https://workflow.gitlab-pages.esrf.fr/ewoks/ewoks
Project-URL: Tracker, https://gitlab.esrf.fr/workflow/ewoks/ewoks/issues
Description: # Ewoks: ESRF Workflow System
        
        This is a container project that allow installing the core library and optionally bindings for Workflow Management Systems.
        
        ## Install
        
        ```bash
        python -m pip install ewoks[orange,dask,ppf,test]
        ```
        
        ## Test
        
        ```bash
        pytest --pyargs ewoks.tests
        ```
        
        ## Getting started
        
        The core library is used to represent graphs and the bindings are used to execute them:
        
        ```bash
        from ewokscore import load_graph
        from ewoksppf import execute_graph
        
        result = execute_graph(load_graph("/path/to/graph.json"))
        ```
        
        ## Documentation
        
        https://workflow.gitlab-pages.esrf.fr/ewoks/ewoks
        
Platform: UNKNOWN
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
Provides-Extra: dask
Provides-Extra: ppf
Provides-Extra: orange
Provides-Extra: test
Provides-Extra: dev
Provides-Extra: doc
