Metadata-Version: 1.1
Name: django-autoroot
Version: 0.2.0
Summary: automaticly creates `root` user after syncdb if not exists
Home-page: http://github.com/spinus/django-autoroot
Author: Tomek Czyż
Author-email: tomekczyz@gmail.com
License: BSD
Description: After syncdb's signal is called, root user is created (if not exists).
        Default settings creates root:root@localhost:qqq user, but
        you can customize it in settings by::
        
            AUTOROOT_NAME
            AUTOROOT_EMAIL
            AUTOROOT_PASSWORD
        
        
        You can tell to create superuser only in DEBUG mode by changing variable below,
        in `settings.py`::
        
            AUTOROOT_DEBUG_ONLY (default True)
        
        
        Code is stolen from:
        http://djangosnippets.org/snippets/1875/
        
Keywords: django user create syncdb
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
