Metadata-Version: 1.1
Name: django-feature-toggle
Version: 0.1.1
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 patter proposed by Martin Fowler
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        1. Install the package pip install git@github.com:thulasi-ram/django-feature-toggle.git
        
        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 you app to use the feature_toggle
        
        Read more on https://thulasi-ram.github.io/django-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
