From 61a1cf52ae493d5f57d8dcccc77609ce2de20661 Mon Sep 17 00:00:00 2001 From: Callum Rollo Date: Wed, 6 May 2020 19:06:58 +0200 Subject: [PATCH] Added reversed colourmap instructions --- README.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e650384..89fef11 100644 --- a/README.md +++ b/README.md @@ -15,3 +15,4 @@ import matplotlib.pyplot as plt import numpy as mp plt.pcolor(np.random.rand(10,10), cmap=cm.batlow) # or any of the other colourmaps made by Fabio Crameri ``` +You can access all the colourmaps by cm.colormapname you can also use tab autocompletion. For a reversed colourmap, append `_r` to the colormap name diff --git a/setup.py b/setup.py index e672009..bf09849 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'cmcrameri', packages = ['cmcrameri'], - version = '0.2', + version = '0.4', license='MIT', description = 'Perceptually uniform colourmaps', author = 'Callum Rollo',