Metadata-Version: 2.1
Name: dau
Version: 0.1.0
Summary: Automatic user creation for Django
Home-page: https://github.com/realpython/reader
Author: Andre Guerra
Author-email: andre.catarino.guerra@protonmail.com
License: MIT
Description: 
        [![Build Status](https://travis-ci.org/AndreGuerra123/django_autouser.png)](https://travis-ci.org/AndreGuerra123/django_autouser)
        [![codecov](https://codecov.io/gh/AndreGuerra123/django_autouser/branch/master/graph/badge.svg)](https://codecov.io/gh/AndreGuerra123/django_autouser)
        
        # Django Auto User
        
        Django Auto User (DAU) is a Django (Python) library for the automatic creation of users.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Django Barcode.
        
        ```bash
        
        pip install dau
        
        ```
        
        ## Usage
        
        Add 'dau' to INSTALLED APPS after 'django.contrib.admin' in your settings.py:
        
        
        ```python
        
        INSTALLED_APPS = [
            ...
            'django.contrib.admin',
            'dau',
            ...
        ]
        
        ```
        
        Then, just add AUTO_USER settings to your settings.py file as:
        
        ```python
        
        AUTO_USER = [
            {
                'username':'admin',
                'email':'admin@admin.com',
                'password':'adminpass',
                'is_superuser':True,
                'is_staff':True,
                'is_active':True
            }
        ]
        
        ```
        
        ## 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](https://choosealicense.com/licenses/mit/)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
