Metadata-Version: 2.1
Name: django-events-framework
Version: 0.0.7
Summary: An events framework for logging and processing Django models events.
Home-page: https://github.com/Reve/django-events-framework
Author: Alexandru Gheorghita
Author-email: gheorghitacristian@mac.com
Maintainer: Alexandru Gheorghita
Maintainer-email: gheorghitacristian@mac.ro
License: MIT
Platform: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS

# Overview

An events framework that allows for logging and processing of Django models custom events.

# Setup

## Requirements

* Python 3.9+

## Installation

Install it directly into an activated virtual environment:

```text
$ pip install django-events-framework
```

# Usage

After installation, the framework can be used by:

```text
INSTALLED_APPS = [
    ...,
    "events_framework"
]
```

