Skip to content

Commit

Permalink
Major rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Fleming committed Oct 23, 2024
1 parent c05cd4a commit b705488
Show file tree
Hide file tree
Showing 25 changed files with 1,455 additions and 1,346 deletions.
18 changes: 9 additions & 9 deletions ipylab/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Copyright (c) ipylab contributors.
# Distributed under the terms of the Modified BSD License.
from __future__ import annotations
from __future__ import annotations # noqa: I001

from ipylab._frontend import module_version as __version__
from ipylab.common import Area, InsertMode, NotificationType, Obj, Transform, hookimpl, pack
from ipylab.ipylab import Ipylab
from ipylab.connection import Connection, ShellConnection
from ipylab import menu
from ipylab.jupyterfrontend import App
from ipylab.widgets import Icon, Panel, SplitPanel

__all__ = [
"__version__",
Expand All @@ -20,17 +26,11 @@
"_jupyter_labextension_paths",
"Ipylab",
"App",
"Obj",
"menu",
]


import ipylab.commands as _commands # Import first # noqa: F401
from ipylab.common import Area, InsertMode, NotificationType, Transform, hookimpl, pack
from ipylab.connection import Connection, ShellConnection
from ipylab.ipylab import Ipylab
from ipylab.jupyterfrontend import App
from ipylab.widgets import Icon, Panel, SplitPanel


def _jupyter_labextension_paths():
"Called by Jupyterlab see: jupyterlab.federated_labextensions._get_labextension_metadata."
return [{"src": "labextension", "dest": "ipylab"}]
Loading

0 comments on commit b705488

Please sign in to comment.