1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
"""The design extra package.
"""
__author__ = 'Florian Krause <florian@expyriment.org> \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
import os as _os
import defaults
from expyriment import _importer_functions
for _plugins in [_importer_functions.import_plugins(__file__),
_importer_functions.import_plugins_from_settings_folder(__file__)]:
for _plugin in _plugins:
try:
exec(_plugins[_plugin])
except:
print("Warning: Could not import {0}".format(
_os.path.dirname(__file__) + _os.sep + _plugin))
|