Metadata-Version: 1.1
Name: cmsplugin-blocks
Version: 0.3.0
Summary: Some basic component plugins to make content with less involved HTML than directly using CKeditor for everything.
Home-page: https://github.com/emencia/cmsplugin-blocks
Author: David Thenon
Author-email: dthenon@emencia.com
License: MIT
Description: .. _DjangoCMS: https://www.django-cms.org/
        .. _djangocms-text-ckeditor: https://github.com/divio/djangocms-text-ckeditor
        
        Emencia DjangoCMS blocks
        ========================
        
        Some basic component plugins to make content with less involved HTML than directly using CKeditor for everything.
        
        Requires
        ********
        
        * Python >= 3.4;
        * Django>=1.9,<1.12;
        * `DjangoCMS`_ >= 3.4,<3.5;
        * `djangocms-text-ckeditor`_;
        
        Install
        *******
        
        First install package ::
        
            pip install cmsplugin-blocks
        
        Add it to your installed Django apps in settings like this : ::
        
            INSTALLED_APPS = (
                ...
                'cms',
                'djangocms_text_ckeditor',
                'cmsplugin_blocks',
            )
        
        Then load its settings from your settings file: ::
        
            from cmsplugin_blocks import *
        
        And finally apply database migrations.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
