Reorganise plugin infrastructure.

This commit is contained in:
Stefan van der Walt
2009-11-02 01:47:25 +02:00
parent 308e76fb9c
commit 6b7aebb563
8 changed files with 7 additions and 0 deletions
@@ -0,0 +1,8 @@
import plugin
try:
import matplotlib.pyplot as plt
except ImportError:
pass
else:
plugin.register('matplotlib', show=plt.imshow, save=plt.imsave)