Metadata-Version: 2.0
Name: edgy.workflow
Version: 0.1.3
Summary: Simple workflow / finite state machine management.
Home-page: https://github.com/python-edgy/workflow
Author: UNKNOWN
Author-email: UNKNOWN
License: Apache License, Version 2.0
Download-URL: https://github.com/python-edgy/workflow/tarball/0.1.3
Platform: UNKNOWN
Requires-Dist: edgy.event (>=0.1,<0.2)
Requires-Dist: six
Provides-Extra: dev
Requires-Dist: coverage (>=4.0,<4.2); extra == 'dev'
Requires-Dist: mock (>=1.3,<1.4); extra == 'dev'
Requires-Dist: nose (>=1.3,<1.4); extra == 'dev'
Requires-Dist: pylint (>=1.4,<1.5); extra == 'dev'
Requires-Dist: pytest (>=2.8,<2.9); extra == 'dev'
Requires-Dist: pytest-cov (>=2.2,<2.3); extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: sphinx-rtd-theme; extra == 'dev'

Workflow
========

``Workflow`` is a simple python library to handle finite state machines, a.k.a objects that always have a
state amongst a finite list of possible states and transitions between those states.

.. image:: https://travis-ci.org/python-edgy/workflow.svg?branch=master
    :target: https://travis-ci.org/python-edgy/workflow

.. image:: https://readthedocs.org/projects/edgyworkflow/badge/?version=latest
    :target: http://edgyworkflow.readthedocs.org/en/latest/?badge=latest
    :alt: Documentation Status

Install
:::::::

.. code-block:: shell

    pip install edgy.workflow

