Metadata-Version: 1.1
Name: django-email-users
Version: 0.1.0
Summary: Stock user app but without usernames
Home-page: https://github.com/bennylope/django-email-users
Author: Ben Lopatin
Author-email: ben@wellfire.co
License: BSD
Description: ==================
        Django email users
        ==================
        
        For when you want regular Django users but without the usernames.
        
        This is a stock replacement for Django's `auth.User` model that removes the
        `username` field in favor of a unique `email` field.
        
        Inspired by the `users` module in pydanny's original `Django cookiecutter
        project template <https://github.com/pydanny/cookiecutter-django/>`_ which I
        kept using and then editing to support email addresses.
        
        Installing
        ----------
        
        Install and download with pip::
        
            pip install django-email-users
        
        Add to your installed apps in your settings.py file::
        
            INSTALLED_APPS = (
                'users',
            )
        
        Change your project's configured user in your settings.py file::
        
            AUTH_USER_MODEL = 'users.User'
        
        Profit.
        
        
        
        
        History
        -------
        
        0.1.0 (2014-08-15)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-email-users
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
