Metadata-Version: 2.1
Name: telescoop-auth
Version: 0.0.1
Summary: A Django app to manage authentication.
Home-page: https://gitlab.com/telescoop-public/django-apps/telescoop-auth
Author: Telescoop SARL SCOP
Author-email: contact@telescoop.fr
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown

# Telescoop Auth

## Quick start

1. Add "Telescop Auth" to your INSTALLED_APPS setting like this::
```python
INSTALLED_APPS = [
    ...
    'telescoop_auth',
]
```
2. Update AUTH_USER_MODEL

In your settings.py, set `AUTH_USER_MODEL = 'telescoop_auth.User'`

3. Include the Telescop Auth URLconf in your project urls.py like this::

    path('auth/', include('telescoop_auth.urls')),

4. Run ``python manage.py migrate`` to create the auth models.


