Metadata-Version: 1.1
Name: django-custom-auth
Version: 0.1.3
Summary: A simple Django app that replaces the default authentication
Home-page: https://github.com/endthestart/django-custom-auth
Author: Michael Anderson
Author-email: contact@andermic.com
License: BSD License
Description: django-custom-auth
        ==================
        
        Implements email based login with Django >= 1.5.
        
        # Installation
        pip install django-custom-auth
        
        # Add this to your settings
        INSTALLED_APPS += (
            'custom_auth',
        )
        
        AUTHENTICATION_BACKENDS = ('custom_auth.auth.Authenticate',)  
        AUTH_USER_MODEL = 'custom_auth.User'
        
        # URLs
        
        url(r'^accounts/', include('custom_auth.urls')),
        
        # Utilization in your models
        user = models.ForeignKey(settings.AUTH_USER_MODEL)
        
        # To access the user model
        from django.contrib.auth import get_user_model
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
