scrybe.ai 0.1.0__tar.gz
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.
- scrybe_ai-0.1.0/.gitignore +22 -0
- scrybe_ai-0.1.0/PKG-INFO +57 -0
- scrybe_ai-0.1.0/README.md +28 -0
- scrybe_ai-0.1.0/pyproject.toml +48 -0
- scrybe_ai-0.1.0/src/scrybe_ai/__init__.py +24 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
target/
|
|
2
|
+
node_modules/
|
|
3
|
+
dist/
|
|
4
|
+
.DS_Store
|
|
5
|
+
Thumbs.db
|
|
6
|
+
*.swp
|
|
7
|
+
*.swo
|
|
8
|
+
.idea/
|
|
9
|
+
.vscode/
|
|
10
|
+
*.iml
|
|
11
|
+
# Tauri generated files
|
|
12
|
+
src-tauri/gen/
|
|
13
|
+
# Maturin develop builds drop compiled extensions inside python/<pkg>/.
|
|
14
|
+
# These shouldn't be tracked — CI builds them from source.
|
|
15
|
+
**/python/**/*.so
|
|
16
|
+
**/python/**/*.pyd
|
|
17
|
+
**/python/**/__pycache__/
|
|
18
|
+
|
|
19
|
+
# Python bytecode caches anywhere in the tree (more general than the
|
|
20
|
+
# python/ tree-specific rule above).
|
|
21
|
+
__pycache__/
|
|
22
|
+
*.pyc
|
scrybe_ai-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scrybe.ai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Scrybe — MCP-native Markdown editor. Metapackage installing the full Python toolkit (library + CLI + MCP server + Mermaid codec).
|
|
5
|
+
Project-URL: Homepage, https://github.com/hartsock/scrybe
|
|
6
|
+
Project-URL: Source, https://github.com/hartsock/scrybe
|
|
7
|
+
Project-URL: Issues, https://github.com/hartsock/scrybe/issues
|
|
8
|
+
Author: Shawn Hartsock
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
Keywords: ai,editor,markdown,mcp,scrybe
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Text Editors
|
|
22
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Requires-Dist: scrybe-cli==0.1.0
|
|
25
|
+
Requires-Dist: scrybe-mcp-server==0.1.0
|
|
26
|
+
Requires-Dist: scrybe-mermaid==0.1.0
|
|
27
|
+
Requires-Dist: scrybe-py==0.1.0
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
30
|
+
# scrybe.ai
|
|
31
|
+
|
|
32
|
+
**Scrybe — MCP-native Markdown editor.** Metapackage that installs the full Python toolkit:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install scrybe.ai
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
This pulls in:
|
|
39
|
+
|
|
40
|
+
| Package | Role |
|
|
41
|
+
|---|---|
|
|
42
|
+
| [`scrybe-py`](https://pypi.org/project/scrybe-py/) | PyO3 library — `import scrybe` for embedding/scripting |
|
|
43
|
+
| [`scrybe-cli`](https://pypi.org/project/scrybe-cli/) | `scrybe` command-line tool — render / lint / mermaid |
|
|
44
|
+
| [`scrybe-mcp-server`](https://pypi.org/project/scrybe-mcp-server/) | Standalone MCP server binary |
|
|
45
|
+
| [`scrybe-mermaid`](https://pypi.org/project/scrybe-mermaid/) | PNG iTXt codec — embeds Mermaid source in PNG metadata |
|
|
46
|
+
|
|
47
|
+
Each component is also installable on its own if you only need one. This metapackage exists so `pip install scrybe.ai` Just Works for users who want the whole kit.
|
|
48
|
+
|
|
49
|
+
## Desktop app
|
|
50
|
+
|
|
51
|
+
The Scrybe **desktop application** (Tauri 2 — macOS / Windows / Linux) is distributed via [GitHub Releases](https://github.com/hartsock/scrybe/releases), not PyPI. Download the platform installer from the latest release.
|
|
52
|
+
|
|
53
|
+
## Project home
|
|
54
|
+
|
|
55
|
+
Source, issues, and documentation: <https://github.com/hartsock/scrybe>
|
|
56
|
+
|
|
57
|
+
License: Apache-2.0
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# scrybe.ai
|
|
2
|
+
|
|
3
|
+
**Scrybe — MCP-native Markdown editor.** Metapackage that installs the full Python toolkit:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install scrybe.ai
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
This pulls in:
|
|
10
|
+
|
|
11
|
+
| Package | Role |
|
|
12
|
+
|---|---|
|
|
13
|
+
| [`scrybe-py`](https://pypi.org/project/scrybe-py/) | PyO3 library — `import scrybe` for embedding/scripting |
|
|
14
|
+
| [`scrybe-cli`](https://pypi.org/project/scrybe-cli/) | `scrybe` command-line tool — render / lint / mermaid |
|
|
15
|
+
| [`scrybe-mcp-server`](https://pypi.org/project/scrybe-mcp-server/) | Standalone MCP server binary |
|
|
16
|
+
| [`scrybe-mermaid`](https://pypi.org/project/scrybe-mermaid/) | PNG iTXt codec — embeds Mermaid source in PNG metadata |
|
|
17
|
+
|
|
18
|
+
Each component is also installable on its own if you only need one. This metapackage exists so `pip install scrybe.ai` Just Works for users who want the whole kit.
|
|
19
|
+
|
|
20
|
+
## Desktop app
|
|
21
|
+
|
|
22
|
+
The Scrybe **desktop application** (Tauri 2 — macOS / Windows / Linux) is distributed via [GitHub Releases](https://github.com/hartsock/scrybe/releases), not PyPI. Download the platform installer from the latest release.
|
|
23
|
+
|
|
24
|
+
## Project home
|
|
25
|
+
|
|
26
|
+
Source, issues, and documentation: <https://github.com/hartsock/scrybe>
|
|
27
|
+
|
|
28
|
+
License: Apache-2.0
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "scrybe.ai"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Scrybe — MCP-native Markdown editor. Metapackage installing the full Python toolkit (library + CLI + MCP server + Mermaid codec)."
|
|
9
|
+
license = { text = "Apache-2.0" }
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "Shawn Hartsock" }]
|
|
13
|
+
keywords = ["markdown", "editor", "mcp", "ai", "scrybe"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13",
|
|
25
|
+
"Topic :: Text Editors",
|
|
26
|
+
"Topic :: Text Processing :: Markup :: Markdown",
|
|
27
|
+
]
|
|
28
|
+
dependencies = [
|
|
29
|
+
"scrybe-py == 0.1.0",
|
|
30
|
+
"scrybe-cli == 0.1.0",
|
|
31
|
+
"scrybe-mcp-server == 0.1.0",
|
|
32
|
+
"scrybe-mermaid == 0.1.0",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Homepage = "https://github.com/hartsock/scrybe"
|
|
37
|
+
Source = "https://github.com/hartsock/scrybe"
|
|
38
|
+
Issues = "https://github.com/hartsock/scrybe/issues"
|
|
39
|
+
|
|
40
|
+
[tool.hatch.build.targets.wheel]
|
|
41
|
+
packages = ["src/scrybe_ai"]
|
|
42
|
+
|
|
43
|
+
[tool.hatch.build.targets.sdist]
|
|
44
|
+
include = [
|
|
45
|
+
"src/scrybe_ai",
|
|
46
|
+
"README.md",
|
|
47
|
+
"pyproject.toml",
|
|
48
|
+
]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""scrybe.ai — metapackage installing the full Scrybe Python toolkit.
|
|
2
|
+
|
|
3
|
+
`pip install scrybe.ai` pulls in:
|
|
4
|
+
|
|
5
|
+
- ``scrybe-py`` — PyO3 library, exposes ``import scrybe``
|
|
6
|
+
- ``scrybe-cli`` — the ``scrybe`` command-line tool
|
|
7
|
+
- ``scrybe-mcp-server`` — standalone MCP server binary
|
|
8
|
+
- ``scrybe-mermaid`` — PNG iTXt codec for Mermaid source embedding
|
|
9
|
+
|
|
10
|
+
The real APIs live in those packages; this module exists only as a
|
|
11
|
+
distribution anchor so the metapackage has a valid wheel.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
from importlib.metadata import PackageNotFoundError, version as _pkg_version
|
|
16
|
+
|
|
17
|
+
try:
|
|
18
|
+
__version__ = _pkg_version("scrybe.ai")
|
|
19
|
+
except PackageNotFoundError:
|
|
20
|
+
__version__ = "0.0.0+unknown"
|
|
21
|
+
except ImportError:
|
|
22
|
+
__version__ = "0.0.0+unknown"
|
|
23
|
+
|
|
24
|
+
__all__ = ["__version__"]
|