Metadata-Version: 2.1
Name: lite-captcha
Version: 0.0.2
Summary: Lite captcha for django projects.
Home-page: https://github.com/memclutter/django-lite-captcha
Author: Memory Clutter
Author-email: memclutter@gmail.com
License: Apache 2
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: captcha (==0.2.4)
Requires-Dist: Pillow (==5.3.0)

# Django Lite Captcha

Lite captcha for django projects. This package don't use database for store captcha.

Detailed documentation is in the "docs" directory.

## Quick start

1. Add "lite_captcha" to your INSTALLED_APPS setting like this::

```python

INSTALLED_APPS = [
    # ...
    'lite_captcha',
]

```


