Metadata-Version: 1.1
Name: django-dual-authentication
Version: 0.3.0
Summary: Allows authentication with either a username or an email address.
Home-page: https://github.com/Zeioth/django-dual-authentication
Author: Zeioth
Author-email: test@gmail.com
License: MIT
Description: # django-dual-authentication
        This package allows to authenticate a user with either a username or an email address. It overrides [Django](https://www.djangoproject.com/) authenticate method, so it should work in almost any case of use, without touch anything else.
        
        Supported Python versions:
        
         * Python 2.7
         * Python 3.4
        
        ## Installation
        Run
        
            pip install git+git://github.com/zeioth/django-dual-authentication.git@master
        
        Then, add this line to your settings.py
        
            AUTHENTICATION_BACKENDS = ['django-dual-authentication.models.DualAuthentication']
        
        Quick and painless, right?
        
        ## Testing
         * Clone this repository.
         * Open testproject directory.
         * Run syncdb or migrate depending your django version, and runserver.
         * Open http://localhost:8000/admin/ and try to login.
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 :: 2.7
