jupyverse 0.1.3__py3-none-any.whl → 0.1.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
jupyverse/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.3"
1
+ __version__ = "0.1.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jupyverse
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A set of FPS plugins implementing a Jupyter server
5
5
  Project-URL: Homepage, https://jupyter.org
6
6
  Author-email: Jupyter Development Team <jupyter@googlegroups.com>
@@ -8,9 +8,6 @@ License: BSD 3-Clause License
8
8
  License-File: COPYING.md
9
9
  Keywords: fastapi,jupyter,plugins,server
10
10
  Requires-Python: >=3.8
11
- Requires-Dist: asphalt-web[fastapi]<2,>=1.1.0
12
- Requires-Dist: asphalt<5,>=4.11.0
13
- Requires-Dist: fastapi<1,>=0.95.0
14
11
  Requires-Dist: fps-contents<1,>=0.1.2
15
12
  Requires-Dist: fps-frontend<1,>=0.1.2
16
13
  Requires-Dist: fps-kernels<1,>=0.1.2
@@ -19,7 +16,6 @@ Requires-Dist: fps-nbconvert<1,>=0.1.2
19
16
  Requires-Dist: fps-terminals<1,>=0.1.2
20
17
  Requires-Dist: fps-yjs<1,>=0.1.2
21
18
  Requires-Dist: jupyverse-api<1,>=0.1.2
22
- Requires-Dist: rich-click<2,>=1.6.1
23
19
  Provides-Extra: auth
24
20
  Requires-Dist: fps-auth<1,>=0.1.2; extra == 'auth'
25
21
  Provides-Extra: auth-fief
@@ -51,7 +47,7 @@ Description-Content-Type: text/markdown
51
47
 
52
48
  # jupyverse
53
49
 
54
- A set of [FPS](https://github.com/jupyter-server/fps) plugins implementing a Jupyter server.
50
+ A set of [Asphalt](https://asphalt.readthedocs.io) components implementing a Jupyter server.
55
51
 
56
52
  Try it online:
57
53
  - JupyterLab frontend: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter-server/jupyverse/HEAD?urlpath=jupyverse-jlab)
@@ -0,0 +1,6 @@
1
+ jupyverse/__init__.py,sha256=Wzf5T3NBDfhQoTnhnRNHSlAsE0XMqbclXG-M81Vas70,22
2
+ jupyverse/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ jupyverse-0.1.4.dist-info/METADATA,sha256=tTMCEfqnMWVtHFry8VfBuB3brGTEPhaBufIxsHKugdw,2576
4
+ jupyverse-0.1.4.dist-info/WHEEL,sha256=EI2JsGydwUL5GP9t6kzZv7G3HDPi7FuZDDf9In6amRM,87
5
+ jupyverse-0.1.4.dist-info/licenses/COPYING.md,sha256=mhO0ZW9EiWOPg0dUgB-lNbJ0CGwRmTdbeAg_se1SOnY,2833
6
+ jupyverse-0.1.4.dist-info/RECORD,,
jupyverse/cli.py DELETED
@@ -1,97 +0,0 @@
1
- import pkg_resources
2
- from typing import List
3
-
4
- import rich_click as click
5
- from asphalt.core.cli import run
6
-
7
-
8
- @click.command()
9
- @click.option(
10
- "--open-browser",
11
- is_flag=True,
12
- show_default=True,
13
- default=False,
14
- help="Open a browser window.",
15
- )
16
- @click.option(
17
- "--host",
18
- type=str,
19
- default="127.0.0.1",
20
- help="The host URL.",
21
- )
22
- @click.option(
23
- "--port",
24
- type=int,
25
- default=8000,
26
- help="The host port.",
27
- )
28
- @click.option(
29
- "--set",
30
- "set_",
31
- multiple=True,
32
- type=str,
33
- help="Set configuration.",
34
- )
35
- @click.option(
36
- "--disable",
37
- multiple=True,
38
- type=str,
39
- help="Disable plugin.",
40
- )
41
- def main(
42
- open_browser: bool,
43
- host: str,
44
- port: int,
45
- set_: List[str],
46
- disable: List[str],
47
- ) -> None:
48
- set_ = list(set_)
49
- for i, s in enumerate(set_):
50
- set_[i] = f"component.components.{s}"
51
- set_.append(f"component.open_browser={open_browser}")
52
- set_.append(f"component.host={host}")
53
- set_.append(f"component.port={port}")
54
- config = get_config(disable)
55
- run.callback(
56
- unsafe=False,
57
- loop=None,
58
- set_=set_,
59
- service=None,
60
- configfile=[config],
61
- ) # type: ignore
62
-
63
-
64
- def get_config(disable: List[str]) -> str:
65
- jupyverse_components = [
66
- ep.name
67
- for ep in pkg_resources.iter_entry_points(group="jupyverse.components")
68
- if ep.name not in disable
69
- ]
70
-
71
- config = ["component:\n type: jupyverse\n components:\n"]
72
- for component in jupyverse_components:
73
- config.append(f" {component}:\n type: {component}\n")
74
-
75
- config.append(
76
- """
77
- logging:
78
- version: 1
79
- disable_existing_loggers: false
80
- formatters:
81
- default:
82
- format: '[%(asctime)s %(levelname)s] %(message)s'
83
- handlers:
84
- console:
85
- class: logging.StreamHandler
86
- formatter: default
87
- root:
88
- handlers: [console]
89
- level: INFO
90
- loggers:
91
- webnotifier:
92
- level: DEBUG
93
- """
94
- )
95
-
96
- config_str = "".join(config)
97
- return config_str
Binary file
@@ -1,9 +0,0 @@
1
- jupyverse/__init__.py,sha256=XEqb2aiIn8fzGE68Mph4ck1FtQqsR_am0wRWvrYPffQ,22
2
- jupyverse/cli.py,sha256=ifJSUEcGgld2poIqSXTW4OPemNS3lDTWs4b8WsXpycY,2006
3
- jupyverse/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- jupyverse/static/favicon.ico,sha256=wmOKif3jYzYX7GJAiHMMHb5NrxjU8uRHKezonfPmAXY,32038
5
- jupyverse-0.1.3.dist-info/METADATA,sha256=r4RH4IIF9BFm6C1m7NlV3EsXz4EVKvWPyL7f7YWHV_E,2726
6
- jupyverse-0.1.3.dist-info/WHEEL,sha256=EI2JsGydwUL5GP9t6kzZv7G3HDPi7FuZDDf9In6amRM,87
7
- jupyverse-0.1.3.dist-info/entry_points.txt,sha256=-LBSelCiKOl5V8SxfSrraXoB45Yt_jvaPC6QOZXlEqY,49
8
- jupyverse-0.1.3.dist-info/licenses/COPYING.md,sha256=mhO0ZW9EiWOPg0dUgB-lNbJ0CGwRmTdbeAg_se1SOnY,2833
9
- jupyverse-0.1.3.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- jupyverse = jupyverse.cli:main