Metadata-Version: 1.1
Name: leonardo-constance
Version: 1.0.0a
Summary: Django live settings with pluggable backends, including Redis. Leonardo Fork from Jannis Leidel
Home-page: https://github.com/django-leonardo/django-constance
Author: Michael Kuty
Author-email: mail@michaelkuty.eu
License: UNKNOWN
Description: Constance - Dynamic Django settings
        ===================================
        
        This is adopted version of standard library for Leonardo CMS.
        
        Additionaly features:
        
        * boolean, numbers, strings, dictionaries
        * support for Django 1.8 +
        * basic grouping via ``CONSTANCE_CONFIG_GROUPS`` which makes tabs for django admin
        * access to config keys from standard django settings
        * really live settings, set every value to django settings and respect the default value from them
        
        .. code-block:: python
        
            CONSTANCE_CONFIG = {
                'MEDIA_ENABLED': (True, 'Help Text'),
                'MEDIA_THUMBNAILS': ({
                        'SMALL': '64x64',
                        'MEDIUM': '265x265',
                    }, 'Help Text')
            }
        
        .. code-block:: python
        
            CONSTANCE_CONFIG_GROUPS = {'Group 1': {
                                        MY_AWESOME_KEY: ('default', help text)
                                        }
                                    }
        
        .. code-block:: python
        
            from django.conf import settings
        
            settings.MY_AWESOME_KEY
        
        settings.py
        
        .. code-block:: python
        
            DEBUG = True
        
            CONSTANCE_CONFIG_GROUPS = {'Group 1': {
                                        DEBUG: (False, help text)
                                        }
                                    }
        
            from django.conf import settings
            settings.DEBUG
            -> True
        
        after setting up value in the admin to False::
        
            from django.conf import settings
            settings.DEBUG
            -> False
        
        
        .. image:: https://secure.travis-ci.org/jezdez/django-constance.png
            :alt: Build Status
            :target: http://travis-ci.org/jezdez/django-constance
        
        A Django app for storing dynamic settings in pluggable backends (Redis and
        Django model backend built in) with an integration with the Django admin app.
        
        For more information see the documentation at:
        
        http://django-constance.readthedocs.org/
        
        If you have questions or have trouble using the app please file a bug report
        at:
        
        https://github.com/jezdez/django-constance/issues
        
        
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
