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.
Original concept code taken from: https://stackoverflow.com/questions/31607458/how-to-add-clipboard-support-to-matplotlib-figures
- Remove Qt requirement. Now use Pillow to grab the figure image, and win32clipboard to manage the Windows clipboard.
- 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.
- Improve setup.py: remove need for importing module, add proper installation dependencies
- Change readme from ReST to Markdown
- Initial release