fabric-notebook-toolkit 0.0.1.dev0__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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fabric-notebook-toolkit
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: Preview placeholder package for Fabric Notebook Toolkit.
|
|
5
|
+
Author: Microsoft Corporation
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Fabric Notebook Toolkit
|
|
11
|
+
|
|
12
|
+
This is a preview placeholder for the future public release of Fabric Notebook
|
|
13
|
+
Toolkit. It intentionally contains only a small `hello()` API and does not
|
|
14
|
+
include the `fntk` CLI, Fabric CLI plugin, or production notebook features.
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
from notebook_cli import hello
|
|
18
|
+
|
|
19
|
+
print(hello())
|
|
20
|
+
```
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
notebook_cli/__init__.py,sha256=x43XDZAOMzBBenDzUhbNfIAYJBL3AorbKYUuBvkHi_4,316
|
|
2
|
+
fabric_notebook_toolkit-0.0.1.dev0.dist-info/METADATA,sha256=xNe3EOBDl_5lt9XHqkK2qfaQDrbFSrLuY0pUfYiJIL4,575
|
|
3
|
+
fabric_notebook_toolkit-0.0.1.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
fabric_notebook_toolkit-0.0.1.dev0.dist-info/top_level.txt,sha256=F4kEJivKqx_w42p905U5FUbQuX2CO88AR9jrfGm4O8o,13
|
|
5
|
+
fabric_notebook_toolkit-0.0.1.dev0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
notebook_cli
|
notebook_cli/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Copyright (c) Microsoft Corporation.
|
|
2
|
+
# Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
"""Preview placeholder for Fabric Notebook Toolkit."""
|
|
5
|
+
|
|
6
|
+
__version__ = "0.0.1.dev0"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def hello() -> str:
|
|
10
|
+
"""Return the placeholder package greeting."""
|
|
11
|
+
return "Hello from Fabric Notebook Toolkit!"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
__all__ = ["__version__", "hello"]
|