Metadata-Version: 1.1
Name: wagtailcolourpicker
Version: 0.0.2
Summary: Wagtail text colour picker for DraftJS
Home-page: https://github.com/AccentDesign/wagtailcolourpicker/
Author: Stuart George
Author-email: stuart@accentdesign.co.uk
License: MIT
Download-URL: https://pypi.python.org/pypi/wagtailcolourpicker
Description: Wagtail Colour Picker
        =====================
        
        A colour picker for Wagtail's DraftJS editor.
        
        Installation
        ------------
        
        .. code:: bash
        
           pip install wagtailcolourpicker
        
        Setup
        -----
        
        Add to installed app:
        
        .. code:: python
        
           INSTALLED_APPS = [
              ...
              'wagtailcolourpicker',
              ...
           ]
        
        Settings
        --------
        
        .. code:: python
        
           # picker icon
           WAGTAILCOLOURPICKER_ICON = ['...']
           # Add your colours
           WAGTAILCOLOURPICKER_COLOURS = {
              'black': '#000000',
              'white': '#ffffff'
           }
        
        Documentation
        -------------
        
        Can be found on `readthedocs <http://wagtailcolourpicker.readthedocs.io/>`_.
        
        Screenshots
        -----------
        
        .. figure::  http://wagtailcolourpicker.readthedocs.io/en/latest/_images/screen_1.png
           :width: 728 px
        
        Picker
        
        .. figure:: http://wagtailcolourpicker.readthedocs.io/en/latest/_images/screen_2.png
           :width: 728 px
        
        Selected Text
        
        Example site with docker
        ------------------------
        
        Clone the repo
        
        .. code:: bash
        
            $ git clone https://github.com/AccentDesign/wagtailcolourpicker.git
        
        Run the docker container
        
        .. code:: bash
        
            $ cd wagtailcolourpicker
            $ docker-compose up
        
        Create yourself a superuser
        
        .. code:: bash
        
            $ docker-compose exec app bash
            $ python manage.py createsuperuser
        
        Go to http://127.0.0.1:8000/cms and add a new basic page
        
        Testing
        -------
        
        TODO
Keywords: wagtail,draftjs,colour,picker,accent,design
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Wagtail
Classifier: Framework :: Wagtail :: 2
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
