zambo 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.
- zambo-0.1.0/PKG-INFO +32 -0
- zambo-0.1.0/README.md +15 -0
- zambo-0.1.0/setup.cfg +2 -0
- zambo-0.1.0/zambo/__init__.py +23 -0
zambo-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zambo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Zambo — official placeholder. Get the real thing: npx zambo install or https://zambo.dev
|
|
5
|
+
Home-page: https://zambo.dev
|
|
6
|
+
Author: Brennan Zambo
|
|
7
|
+
Author-email: brennanzambo@zambo.dev
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Project-URL: Homepage, https://zambo.dev
|
|
14
|
+
Project-URL: MCP endpoint, https://zambo.dev/api/mcp
|
|
15
|
+
Project-URL: Install guide, https://zambo.dev/install
|
|
16
|
+
|
|
17
|
+
# zambo (PyPI placeholder)
|
|
18
|
+
|
|
19
|
+
This is the **official placeholder** for the `zambo` name on PyPI, published by
|
|
20
|
+
Zambo (Brennan Zambo).
|
|
21
|
+
|
|
22
|
+
Zambo is the continuity-and-proof layer for AI work: one hosted MCP endpoint to
|
|
23
|
+
run jobs, continue them across AI clients, and receive verifiable receipts.
|
|
24
|
+
|
|
25
|
+
**The real Zambo is not installed via pip.** Get it here:
|
|
26
|
+
|
|
27
|
+
- Website: https://zambo.dev
|
|
28
|
+
- Install: `npx zambo install`
|
|
29
|
+
- MCP endpoint: https://zambo.dev/api/mcp
|
|
30
|
+
- Free tier: 20 calls/tool/day, no account
|
|
31
|
+
- Contact: brennanzambo@zambo.dev
|
|
32
|
+
|
zambo-0.1.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# zambo (PyPI placeholder)
|
|
2
|
+
|
|
3
|
+
This is the **official placeholder** for the `zambo` name on PyPI, published by
|
|
4
|
+
Zambo (Brennan Zambo).
|
|
5
|
+
|
|
6
|
+
Zambo is the continuity-and-proof layer for AI work: one hosted MCP endpoint to
|
|
7
|
+
run jobs, continue them across AI clients, and receive verifiable receipts.
|
|
8
|
+
|
|
9
|
+
**The real Zambo is not installed via pip.** Get it here:
|
|
10
|
+
|
|
11
|
+
- Website: https://zambo.dev
|
|
12
|
+
- Install: `npx zambo install`
|
|
13
|
+
- MCP endpoint: https://zambo.dev/api/mcp
|
|
14
|
+
- Free tier: 20 calls/tool/day, no account
|
|
15
|
+
- Contact: brennanzambo@zambo.dev
|
zambo-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Zambo — official PyPI placeholder.
|
|
2
|
+
|
|
3
|
+
This package reserves the ``zambo`` name on PyPI for Zambo, the
|
|
4
|
+
continuity-and-proof layer for AI work.
|
|
5
|
+
|
|
6
|
+
The real Zambo is not installed via pip. Get it here:
|
|
7
|
+
|
|
8
|
+
- Website: https://zambo.dev
|
|
9
|
+
- Install: ``npx zambo install``
|
|
10
|
+
- MCP endpoint: https://zambo.dev/api/mcp
|
|
11
|
+
- Contact: brennanzambo@zambo.dev
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "0.1.0"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def where_is_zambo() -> str:
|
|
18
|
+
"""Return where to get the real Zambo."""
|
|
19
|
+
return (
|
|
20
|
+
"Zambo isn't a pip package. "
|
|
21
|
+
"Get the real thing: run `npx zambo install` or visit https://zambo.dev "
|
|
22
|
+
"(MCP endpoint: https://zambo.dev/api/mcp)."
|
|
23
|
+
)
|