Metadata-Version: 1.1
Name: django-authtools
Version: 0.1.0
Summary: Custom user model app for Django featuring email as username and class-based views for authentication.
Home-page: https://django-authtools.readthedocs.org/
Author: Fusionbox, Inc.
Author-email: programmers@fusionbox.com
License: BSD
Description: django-authtools
        ----------------
        
        .. image:: https://travis-ci.org/fusionbox/django-authtools.png
           :target: http://travis-ci.org/fusionbox/django-authtools
           :alt: Build Status
        
        
        A custom user model app for Django 1.5+ that features email as username and
        other things. It tries to stay true to the built-in user model for the most
        part.
        
        The main differences between authtools's User and django.contrib.auth's are
        email as username and class-based auth views.
        
        Read the `django-authtools documentation
        <https://django-authtools.readthedocs.org/en/latest/>`_.
        
        Quickstart
        ==========
        
        Before you use this, you should probably read the documentation about `custom
        User models
        <https://docs.djangoproject.com/en/dev/topics/auth/customizing/#substituting-a-custom-user-model>`_.
        
        1.  Install the package::
        
                $ pip install django-authtools
        
        2.  Add ``authtools`` to your ``INSTALLED_APPS``.
        
        3.  Add the following to your settings.py::
        
                AUTH_USER_MODEL = 'authtools.User'
        
        4.  Add ``authtools.urls`` to your URL patterns::
        
                urlpatterns = patterns('',
                    # ...
                    url(r'^accounts/', include('authtools.urls')),
                    # ...
                )
        
        5.  Enjoy.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
