Metadata-Version: 2.0
Name: django-improved-user
Version: 0.5.1
Summary: A custom Django user model for best practices email-based login.
Home-page: https://github.com/jambonsw/django-improved-user/
Author: Russell Keith-Magee, Andrew Pinkham
Author-email: UNKNOWN
License: Simplified BSD License
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Requires-Dist: django (>=1.8)
Provides-Extra: factory
Requires-Dist: Faker (==0.7.18); extra == 'factory'
Requires-Dist: factory-boy (==2.9.2); extra == 'factory'
Requires-Dist: python-dateutil (==2.6.1); extra == 'factory'

Read Me
=======

This project provides a custom user model that improves on Django's
default by making a few modern and international changes.

* Uses email as the username to simplify login for users
* Replace :code:`first_name` and :code:`last_name` with international
  friendly :code:`short_name` and :code:`full_name` fields

For information about getting started, please refer to the `quickstart
documentation`_. For information about how to help with the project,
please see the `contributing documentation`_.

.. _contributing documentation: https://django-improved-user.readthedocs.io/en/latest/contributing.html
.. _quickstart documentation: https://django-improved-user.readthedocs.io/en/latest/quickstart.html


