[78ef36]: / slideflow / plugin.py

Download this file

13 lines (9 with data), 290 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
"""
This module is responsible for loading all the plugins that are installed in the system.
"""
import pkg_resources
def load_plugins():
for entry_point in pkg_resources.iter_entry_points('slideflow.plugins'):
register = entry_point.load()
register()
load_plugins()