Metadata-Version: 2.1
Name: django-user-email
Version: 0.2.1
Summary: Custom, simple Django User model with email as username
Home-page: https://github.com/khasbilegt/django-user-email
License: MIT
Keywords: django,model,user,email,username,custom
Author: Khasbilegt.TS
Author-email: khasbilegt.ts@gmail.com
Requires-Python: >=3.6.2,<4.0.0
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Build Tools
Requires-Dist: Django (>=2.2,<4)
Project-URL: Repository, https://github.com/khasbilegt/django-user-email
Description-Content-Type: text/markdown

<h1 align="center">
  django-user-email
</h1>

<p align="center">
  <a href="https://github.com/khasbilegt/django-user-email/">
    <img src="https://img.shields.io/github/workflow/status/khasbilegt/django-user-email/test?label=CI&logo=github&style=for-the-badge" alt="ci status">
  </a>
  <a href="https://pypi.org/project/django-user-email/">
    <img src="https://img.shields.io/pypi/v/django-user-email?style=for-the-badge" alt="pypi link">
  </a>
  <a>
    <img src="https://img.shields.io/pypi/pyversions/django-user-email?logo=python&style=for-the-badge" alt="supported python versions">
  </a>
  <a>
    <img src="https://img.shields.io/pypi/djversions/django-user-email?logo=django&style=for-the-badge" alt="supported django versions">
  </a>
</p>

<p align="center">
  <a href="#installation">Installation</a> •
  <a href="#contributing">Contributing</a> •
  <a href="#license">License</a>
</p>

<p align="center">Custom, simple Django User model with email as username</p>

## Installation

1. Use the package manager [pip](https://pip.pypa.io/en/stable/) to install numiner.

```bash
$ pip install django-user-email
```

2. Register the app to your settings

```python
INSTALLED_APPS = (
    ...
    'user_email',
)
```

3. Since it's a custom User model Django needs to know the path of the model

```bash
AUTH_USER_MODEL = 'user_email.User'
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT License](https://choosealicense.com/licenses/mit/)

