Files
cellxgene/server/__init__.py
2020-10-06 13:55:35 -07:00

14 lines
382 B
Python

import logging
import sys
from server.common.utils.utils import import_plugins
__version__ = "0.16.5-rc.1"
display_version = "cellxgene v" + __version__
try:
import_plugins("server.plugins")
except Exception as e:
# Make sure to exit in this case, as the server may not be configured as expected.
logging.critical(f"Error in import_plugins: {str(e)}")
sys.exit(1)