Metadata-Version: 2.4
Name: django-drf-otp-auth
Version: 0.1.0
Summary: Reusable Django OTP Authentication
Project-URL: Repository, https://github.com/roksprogar/django-otp-auth
Author-email: Rok Sprogar <rok.sprogar@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: dj-rest-auth>=5.0
Requires-Dist: django>=5.0
Requires-Dist: djangorestframework-simplejwt>=5.0
Requires-Dist: djangorestframework>=3.14
Description-Content-Type: text/markdown

# Django OTP Auth

Reusable Django OTP Authentication library.

## Installation

```bash
pip install django-otp-auth
```

## Usage

Add `django_otp_auth` to your `INSTALLED_APPS`.

```python
INSTALLED_APPS = [
    ...
    'django_otp_auth',
    ...
]
```
