Metadata-Version: 2.1
Name: django-workflow-fsm
Version: 4.0.1
Summary: Control FSMs from Django
Home-page: https://github.com/george-silva/django-workflow-fsm
Author: George Silva
Author-email: george@sigmageosistemas.com.br
License: MIT
Keywords: django-workflow-fsm
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: celery
Requires-Dist: django
Requires-Dist: django-ordered-model
Requires-Dist: djangorestframework
Requires-Dist: jsonfield
Requires-Dist: djangorestframework-filters
Requires-Dist: django-reversion
Requires-Dist: django-common-models
Requires-Dist: redis

=============================
Django Workflow FSM
=============================

.. image:: https://badge.fury.io/py/django-workflow-fsm.svg
    :target: https://badge.fury.io/py/django-workflow-fsm

.. image:: https://travis-ci.org/george-silva/django-workflow-fsm.svg?branch=master
    :target: https://travis-ci.org/george-silva/django-workflow-fsm

.. image:: https://codecov.io/gh/george-silva/django-workflow-fsm/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/george-silva/django-workflow-fsm

Control FSMs from Django

Documentation
-------------

The full documentation is at https://django-workflow-fsm.readthedocs.io.

Quickstart
----------

Install Django Workflow FSM::

    pip install django-workflow-fsm

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'workflow.apps.WorkflowConfig',
        ...
    )

Add Django Workflow FSM's URL patterns:

.. code-block:: python

    from workflow import urls as workflow_urls


    urlpatterns = [
        ...
        url(r'^', include(workflow_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

You need to have postgresql installed, with user/password postgres/postgres.

You will also need REDIS installed and working. This package for testing
will use the default redis configuration, localhost, 6379 port and 0 database.

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2017-05-31)
++++++++++++++++++

* First release on PyPI.
