Metadata-Version: 1.1
Name: vapeplot
Version: 0.0.1
Summary: matplotlib extension for vaporwave aesthetics
Home-page: https://github.com/dantaki/vapeplot/
Author: Danny Antaki
Author-email: dantaki@ucsd.edu
License: GPLv2
Description-Content-Type: UNKNOWN
Description: # vapeplot
        
        ---
        
        matplotlib extension for vaporwave aesthetics 
        
        ---
        
        ## install
        
        ```
        pip install https://github.com/dantaki/vapeplot/releases/download/v0.0.1-alpha/vapeplot-0.0.1.tar.gz
        ```
        
        ## demo
        
        ```
        from vapeplot import vapeplot
        import matplotlib.pyplot as plt
        %matplotlib inline
        
        vapeplot.font_size(16) # change font size
        pal = vapeplot.palettes().vaporwave
        for x in range(0,len(pal)):
            plt.scatter(x,1,color=pal[x],s=500)
            plt.text(x-0.2,0.997,'{}'.format(x))
        vapeplot.despine(plt.axes()) # despine figure
        plt.show()
        ```
        
        ```
        pal = vapeplot.palettes().cool
        vapeplot.font_size(20) # change font size
        for x in range(0,len(pal)):
            plt.scatter(x,1,color=pal[x],s=2500)
            plt.text(x-0.1,0.995,'{}'.format(x))
        vapeplot.despine(plt.axes()) # despine figure
        plt.show()
        ```
        
        ## api
        
        `vapeplot.palettes()`
        * Object containing lists of colors
        * `vapeplot.palettes().vaporwave`
          * extended vaporwave palette
        * `vapeplot.palettes().cool`
          * cool aesthetics
        
        `vapeplot.despine(ax)`
          * removes the top and right axis
        
        `vapeplot.font_size(s)`
          * change the font size globally 
        
        ## more to come :wink:
Keywords: vaporwave matplotlib
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Topic :: Multimedia :: Graphics
