Metadata-Version: 1.1
Name: django-feature-toggle
Version: 0.1.2
Summary: A simple Django app based on Feature Toggle described by Martin Fowler.
Home-page: https://github.com/thulasi-ram/django-feature-toggle
Author: Damodharan Thulasiram
Author-email: thulasi503@gmail.com
License: GNU GPLv3
Description-Content-Type: UNKNOWN
Description: ==============
        Feature Toggle
        ==============
        
        Feature Toggle is a simple Django app based on the behavioural pattern `Feature Toggle <https://martinfowler.com/articles/feature-toggles.html>`_ proposed by Martin Fowler.
        
        Detailed documentation is `here <https://thulasi-ram.github.io/django-feature-toggle>`_
        .
        
        Quickstart
        -----------
        1. Install the package ``pip install django-feature-toggle``
        
        2. Add "feature_toggle" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'feature_toggle',
            ]
        
        3. Run ``python manage.py migrate`` to create the models required feature_toggle.
        
        4. Start your app to use the feature_toggle.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
