Metadata-Version: 1.1
Name: colormap
Version: 0.9.0
Summary: Utilities to ease manipulation of matplotlib colormaps and color codecs (e.g., hex2rgb)
Home-page: ['http://packages.python.org/colormap/']
Author: Thomas Cokelaer
Author-email: cokelaer@ebi.ac.uk
License: GPL
Download-URL: ['http://pypi.python.org/pypi/colormap']
Description: #############################
        COLORMAP documentation
        #############################
        
        .. image:: https://badge.fury.io/py/colormap.svg
            :target: https://pypi.python.org/pypi/colormap
        
        .. image:: https://pypip.in/d/colormap/badge.png
            target: https://crate.io/packages/colormap/
        
        .. image:: https://secure.travis-ci.org/cokelaer/colormap.png
            :target: http://travis-ci.org/cokelaer/colormap
        
        .. image:: https://coveralls.io/repos/cokelaer/colormap/badge.png?branch=master 
            :target: https://coveralls.io/r/cokelaer/colormap?branch=master 
        
        .. image:: https://landscape.io/github/cokelaer/colormap/master/landscape.png
            :target: https://landscape.io/github/cokelaer/colormap/master
        
        .. image:: https://badge.waffle.io/cokelaer/colormap.png?label=ready&title=Ready 
            :target: https://waffle.io/cokelaer/colormap
        
        
        Compatible with Python 2.7, 3.3, 3.4
        
        
        What is it ?
        ################
        
        **colormap** package provides simple utilities to convert colors between
        RGB, HEX, HLS, HUV and a class to easily build colormaps for matplotlib.
        
        
        Installation
        ###################
        
        ::
        
            pip install colormap
        
        Example
        ##########
        
        Create your own colormap from red to green colors with intermediate color as
        whitish (diverging map from red to green)::
        
            c = Colormap()
            mycmap = c.cmap( {'red':[1,1,0], 'green':[0,1,.39], 'blue':[0,1,0]})
            cmap = c.test_colormap(mycmap)
        
        See user guide for details.
        
        
        
Keywords: hex2web,web2hex,hex2rgb,rgb2hex,rgb2hsv,hsv2rgb,rgb2hls,hls2rgb,colormap
Platform: Linux
Platform: Unix
Platform: MacOsX
Platform: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: matplotlib
Requires: easydev
