Metadata-Version: 2.1
Name: django-cust-email-user
Version: 0.1.2
Summary: Just another Django-email-user app. Makes the email address as the username.
Home-page: https://github.com/red-pepper-services/django-emailuser
Author: red-pepper-services
Author-email: pypi@schiegg.at
License: MIT
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

===========================
Django E-Mail User
===========================

Just another Django-email-user app. Makes the email address as the username.

Attention! Only suitable for fresh Django projects.


Installation
============

* Installation ::

    pip install django-cust-email-user


* Add ``email_users`` to ``INSTALLED_APPS`` in settings.py ::

    INSTALLED_APPS = [
      "email_users",
      ...
    ]

* Create ``AUTH_USER_MODEL`` in settings.py ::

    AUTH_USER_MODEL = 'email_users.User'

* Database Update ::

    python manage.py migrate


Internal Notes
==============

Publishing to PyPI::

	python -m pip install -U wheel twine setuptools
	python setup.py sdist
	python setup.py bdist_wheel
	twine upload --skip-existing dist/*
