Metadata-Version: 1.1
Name: python-app-loader
Version: 0.0.7
Summary: Load configs from python modules or Django applications.
Home-page: https://github.com/leonardo-modules/python-app-loader
Author: Michael Kuty
Author-email: mail@majklk.cz
License: UNKNOWN
Description: =================
        python-app-loader
        =================
        
        Load configs from python modules or Django applications.
        
        .. contents::
            :local:
        
        Installation
        ============
        
        .. code-block:: bash
        
            pip install python-app-loader
        
        
        Usage
        =====
        
        Your settings.py
        
        .. code-block:: python
        
            from app_loader import app_loader
        
            APPS = ['testapp']
        
            # load directly specified apps
            app_loader.get_app_modules(APPS)
        
            # load all modules
            app_loader.load_modules()
        
            # just propagate all loaded modules to settings
            INSTALLED_APPS = app_loader.config.apps
        
            # override all
            try:
                from local_settings import *
            except ImportError:
                pass
        
        
        Read More
        =========
        
        * https://github.com/django-leonardo/django-leonardo
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
