Metadata-Version: 2.1
Name: django-camunda
Version: 0.9.2
Summary: Interact with Camunda from Django
Home-page: https://github.com/maykinmedia/django-camunda
Author: Maykin Media
Author-email: support@maykinmedia.nl
License: MIT
Description: 
        
        .. django-camunda documentation master file, created by startproject.
           You can adapt this file completely to your liking, but it should at least
           contain the root `toctree` directive.
        
        Welcome to django-camunda's documentation!
        =================================================
        
        :Version: 0.9.2
        :Source: https://github.com/maykinmedia/django-camunda
        :Keywords: camunda, process engine, bpmn
        :PythonVersion: 3.7
        
        |build-status| |requirements| |coverage|
        
        |python-versions| |django-versions| |pypi-version|
        
        <One liner describing the project>
        
        .. contents::
        
        .. section-numbering::
        
        Features
        ========
        
        * Admin model for Camunda configuration
        * Shared Celery tasks
        * Domain models as Python objects
        * Complex/custom process variable support
        
        Installation
        ============
        
        Requirements
        ------------
        
        * Python 3.7 or above (3.6 probably also works with the package ``dataclasses``)
        * setuptools 30.3.0 or above
        * Django 2.2 or above
        * Celery
        
        
        Install
        -------
        
        .. code-block:: bash
        
            pip install django-camunda
        
        Next, ensure the following apps are installed:
        
        .. code-block:: python
        
            INSTALLED_APPS = [
                ...,
                "solo",
                "django_camunda",
                ...
            ]
        
        Usage
        =====
        
        TODO
        
        
        .. |build-status| image:: https://travis-ci.org/maykinmedia/django-camunda.svg?branch=develop
            :target: https://travis-ci.org/maykinmedia/django-camunda
        
        .. |requirements| image:: https://requires.io/github/maykinmedia/django-camunda/requirements.svg?branch=develop
            :target: https://requires.io/github/maykinmedia/django-camunda/requirements/?branch=develop
            :alt: Requirements status
        
        .. |coverage| image:: https://codecov.io/gh/maykinmedia/django-camunda/branch/develop/graph/badge.svg
            :target: https://codecov.io/gh/maykinmedia/django-camunda
            :alt: Coverage status
        
        .. |python-versions| image:: https://img.shields.io/pypi/pyversions/django-camunda.svg
        
        .. |django-versions| image:: https://img.shields.io/pypi/djversions/django-camunda.svg
        
        .. |pypi-version| image:: https://img.shields.io/pypi/v/django-camunda.svg
            :target: https://pypi.org/project/django-camunda/
        
Keywords: camunda,process engine,bpmn,common ground
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: docs
Provides-Extra: release
Provides-Extra: coverage
Provides-Extra: tests
