Metadata-Version: 2.1
Name: addcopyfighandler
Version: 2.0.0
Summary: Adds a Ctrl+C handler to matplotlib figures for copying the figure to the clipboard
Home-page: https://github.com/joshburnett/addcopyfighandler
Author: Josh Burnett
Author-email: github@burnettsonline.org
License: MIT
Description: addcopyfighandler: Add a Ctrl+C handler to matplotlib figures for copying the figure to the clipboard
        ======================================================================================================
        
        Simply importing this module (after importing matplotlib or pyplot) will add a handler
        so that pressing Ctrl+C with a matplotlib figure window selected will copy
        the figure to the clipboard as an image.
        
        Using code & concepts from:
        - https://stackoverflow.com/questions/31607458/how-to-add-clipboard-support-to-matplotlib-figures
        - https://stackoverflow.com/questions/31607458/how-to-add-clipboard-support-to-matplotlib-figures
        - https://stackoverflow.com/questions/34322132/copy-image-to-clipboard-in-python3
        
        Releases
        --------
        
        ### 2.0.0: 2019-06-07
        
        - Remove Qt requirement. Now use Pillow to grab the figure image, and win32clipboard to manage the Windows clipboard.
        
        
        ### 1.0.2: 2018-11-27
        
        - Force use of Qt4Agg or Qt5Agg. Some installs will default to TkAgg backend, which this module
        doesn't support. Forcing the backend to switch when loading this module saves the user from having
        to manually specify one of the Qt backends in every analysis.
        
        
        ### 1.0.1: 2018-11-27
        
        - Improve setup.py: remove need for importing module, add proper installation dependencies
        - Change readme from ReST to Markdown
        
        
        ### 1.0: 2017-08-09
        
        - Initial release
        
        
Keywords: addcopyfighandler figure matplotlib handler copy
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
