Metadata-Version: 1.1
Name: django-mobile-auth
Version: 0.2.5
Summary: A Django app that allows users to authenticate using email, phone number or username.
Home-page: https://github.com/ricardosasilva/django_mobile_auth
Author: Ricardo S. A. Silva
Author-email: ricardo@salamandra.cc
License: MIT
Description: # Introduction #
        
        A Django app that allows users to authenticate using email, phone number or username.
        
        
        ## Installation ##
        
        
        1. Install package:
        
                pip install django_mobile_auth
        
        2. Add mobile_auth app to INSTALLED_APPS in your django settings.py:
        
                INSTALLED_APPS = (
                    'mobile_auth',
                    ...
                )
        
            Note: Add it before django.contrib.auth if you want to use the custom createsuperuser command with support to email and phone.
        
        3. On you django settings, set the AUTH_USER_MODEL and AUTHENTICATION_BACKENDS to:
        
            AUTH_USER_MODEL = 'mobile_auth.MobileUser'
            AUTHENTICATION_BACKENDS = ['mobile_auth.backends.MobileAuthBackend',]
        
Keywords: django auth email phone
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
