Metadata-Version: 1.1
Name: django-createsuperuserwithpassword
Version: 2.0.0
Summary: Django management command to create usable super users, programmatically
Home-page: https://github.com/hartwork/django-createsuperuserwithpassword
Author: Adam Charnock, Sebastian Pipping
Author-email: sebastian@pipping.org
License: MIT
Description: django-createsuperuserwithpassword
        ==================================
        
        … provides a Django management command to create ready-to-login super
        users during development.
        
        
        How to Use
        ==========
        
        1. Install
        ----------
        
        Install the pip package locally or globally:
        
        .. code:: shell
        
           pip install [--user] django-createsuperuserwithpassword
        
        
        2. Activate
        -----------
        
        Enable the Django management command by extending your Django project
        settings:
        
        .. code:: python
        
           INSTALLED_APPS += ("django_createsuperuserwithpassword", )
        
        
        3. Apply
        --------
        
        Call the command — e.g. from within a container entrypoint script — like
        this:
        
        .. code:: shell
        
           python manage.py createsuperuserwithpassword \
                   --username admin \
                   --password admin \
                   --email admin@example.org \
                   --preserve
        
        
        Development
        ===========
        
        If you want to help fix a bug, an easy way to spin up a development
        environment is:
        
        .. code:: shell
        
           git clone https://github.com/hartwork/django-createsuperuserwithpassword
           cd django-createsuperuserwithpassword
           docker-compose up --build
        
        
        Authors
        =======
        
        **django-createsuperuserwithpassword** is based on code by `Adam
        Charnock`_ licensed under `the MIT license`_ that started out at
        `adamcharnock/swiftwind-heroku`_.
        
        `Sebastian Pipping`_ added and fixed a few things, on top.
        
        
        .. _Adam Charnock: https://github.com/adamcharnock
        .. _the MIT license: https://opensource.org/licenses/MIT
        .. _adamcharnock/swiftwind-heroku: https://github.com/adamcharnock/swiftwind-heroku/commits/master/swiftwind_heroku/management/commands/create_superuser_with_password.py
        .. _Sebastian Pipping: https://github.com/hartwork
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
