Metadata-Version: 2.1
Name: django-custom-acccounts-plus
Version: 1.0.0
Summary: A Django app override Django's default Auth Model.
Home-page: https://www.example.com/
Author: Your Name
Author-email: "aridutta101010@gmail.com"
License: MIT License
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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/x-rst
License-File: LICENSE


Project Description: Django Custom Accounts Plus

This module overrides Django's default User model

Important
---------
Add this model at the very start of the project. Before any migration.

Quick start
-----------
1. Add "accounts" to your INSTALLED_APPS setting (in settings.py)like this::
INSTALLED_APPS = [
...
'accounts',
]
2. Add "AUTH_USER_MODEL" in settings (settings.py) like this::
AUTH_USER_MODEL = 'accounts.CustomUser'

3. Migrate (python manage.py migrate)

TODO
----

Changelog
---------
0.1 - 2023-02-22 Arindam Dutta - First release

Copyright(c) 2023 Arindam Dutta
