Metadata-Version: 1.2
Name: comala-workflows
Version: 0.5.0
Summary: A simple wrapper around the Comala Workflows REST API.
Home-page: https://github.com/DaveTCode/comala-workflow-python-lib
Author: David Tyler
Author-email: davet.code@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: |Build Status| |PyPI version|
        
        Comala Workflow Python Library
        ==============================
        
        This is a simple wrapper around the REST API which the Comala Workflow
        plugin for Confluence provides.
        
        Installation
        ------------
        
        To install from pypi use:
        
        ::
        
            pip install comala-workflows
        
        Usage
        -----
        
        .. code:: python
        
            from comala.workflows.client import ComalaWorkflowsClient
            with ComalaWorkflowsClient("https://server:port/contextpath", ("user", "pass")) as client:
                status = client.status(page_id=1, expand=['state','states','approvals','actions','tasks'])
        
        Development and Deployment
        --------------------------
        
        See the `Contribution guidelines for this project <CONTRIBUTING.md>`__
        for details on how to make changes to this library.
        
        .. |Build Status| image:: https://travis-ci.org/DaveTCode/comala-workflow-python-lib.svg?branch=master
           :target: https://travis-ci.org/DaveTCode/comala-workflow-python-lib
        .. |PyPI version| image:: https://badge.fury.io/py/comala-workflows.svg
           :target: https://badge.fury.io/py/comala-workflows
        
Keywords: comala,workflow
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4
