update the test for OMF including the non critical stuff and the new ec_shutdown
[nepi.git] / src / nepi / __init__.py
index c8ae48c..1d1359f 100644 (file)
@@ -21,9 +21,10 @@ import logging
 import os
 import traceback
 
+__version__ = "3.0"
+
 LOGLEVEL = os.environ.get("NEPI_LOGLEVEL", "INFO").upper()
 LOGLEVEL = getattr(logging, LOGLEVEL)
-#FORMAT = "%(asctime)s %(name)-12s %(levelname)-8s %(message)s"
 FORMAT = "%(asctime)s %(name)s %(levelname)-4s %(message)s"
 
 # NEPI_LOG variable contains space separated components 
@@ -48,3 +49,10 @@ else:
     # components
     logging.basicConfig(format = FORMAT, level = LOGLEVEL)
 
+
+# Add RMs to ResourceFactory. Use NEPI_SEARCH_PATH to 
+# override the default path to search for RMs
+from nepi.execution.resource import populate_factory
+populate_factory()
+
+