constants.py 498 B

12345678910111213
  1. """ special constants used throughout jupyter_lsp
  2. """
  3. # the current `entry_point` to use for python-based spec finders
  4. EP_SPEC_V1 = "jupyter_lsp_spec_v1"
  5. # the current `entry_point`s to use for python-based listeners
  6. EP_LISTENER_ALL_V1 = "jupyter_lsp_listener_all_v1"
  7. EP_LISTENER_CLIENT_V1 = "jupyter_lsp_listener_client_v1"
  8. EP_LISTENER_SERVER_V1 = "jupyter_lsp_listener_server_v1"
  9. # jupyter*config.d where language_servers can be defined
  10. APP_CONFIG_D_SECTIONS = ["_", "_notebook_", "_server_"]