zleap 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.
- zleap-0.1.0/.gitignore +27 -0
- zleap-0.1.0/LICENSE +21 -0
- zleap-0.1.0/PKG-INFO +51 -0
- zleap-0.1.0/README.md +27 -0
- zleap-0.1.0/pyproject.toml +39 -0
zleap-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Build
|
|
2
|
+
build/
|
|
3
|
+
dist/
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
|
|
7
|
+
# Env
|
|
8
|
+
.venv/
|
|
9
|
+
venv/
|
|
10
|
+
|
|
11
|
+
# Caches
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.py[cod]
|
|
14
|
+
.pytest_cache/
|
|
15
|
+
.mypy_cache/
|
|
16
|
+
.ruff_cache/
|
|
17
|
+
.coverage
|
|
18
|
+
htmlcov/
|
|
19
|
+
|
|
20
|
+
# Secrets
|
|
21
|
+
.env
|
|
22
|
+
|
|
23
|
+
# Internal docs are kept out of the repo (see ../zleap-docs)
|
|
24
|
+
docs/
|
|
25
|
+
|
|
26
|
+
# OS
|
|
27
|
+
.DS_Store
|
zleap-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Zleap Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
zleap-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zleap
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Umbrella metapackage for the zleap.* namespace — installs all zleap subpackages
|
|
5
|
+
Project-URL: Homepage, https://github.com/Zleap-AI/zleap
|
|
6
|
+
Project-URL: Issues, https://github.com/Zleap-AI/zleap/issues
|
|
7
|
+
Author-email: Zleap Team <contact@zleap.ai>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: agent,metapackage,namespace,sag,zleap
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Requires-Dist: zleap-agent>=0.1.0a1
|
|
20
|
+
Requires-Dist: zleap-context>=0.1.0a1
|
|
21
|
+
Requires-Dist: zleap-memo>=0.1.0a1
|
|
22
|
+
Requires-Dist: zleap-sag>=0.4.0
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# zleap
|
|
26
|
+
|
|
27
|
+
Umbrella metapackage for the **`zleap.*`** namespace. It ships no code of its own —
|
|
28
|
+
it simply pulls in the whole family so you can grab everything with one name.
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install zleap # installs sag + agent + memo + context
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
from zleap import sag # e.g. from zleap.sag import DataEngine
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Want just one component? Install its distribution directly:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install zleap-sag # only the SAG data engine
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
| Distribution | Import | Status |
|
|
45
|
+
|---|---|---|
|
|
46
|
+
| `zleap-sag` | `zleap.sag` | data engine (stable) |
|
|
47
|
+
| `zleap-agent` | `zleap.agent` | placeholder |
|
|
48
|
+
| `zleap-memo` | `zleap.memo` | placeholder |
|
|
49
|
+
| `zleap-context` | `zleap.context` | placeholder |
|
|
50
|
+
|
|
51
|
+
See https://github.com/Zleap-AI/zleap.
|
zleap-0.1.0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# zleap
|
|
2
|
+
|
|
3
|
+
Umbrella metapackage for the **`zleap.*`** namespace. It ships no code of its own —
|
|
4
|
+
it simply pulls in the whole family so you can grab everything with one name.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
pip install zleap # installs sag + agent + memo + context
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from zleap import sag # e.g. from zleap.sag import DataEngine
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Want just one component? Install its distribution directly:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install zleap-sag # only the SAG data engine
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
| Distribution | Import | Status |
|
|
21
|
+
|---|---|---|
|
|
22
|
+
| `zleap-sag` | `zleap.sag` | data engine (stable) |
|
|
23
|
+
| `zleap-agent` | `zleap.agent` | placeholder |
|
|
24
|
+
| `zleap-memo` | `zleap.memo` | placeholder |
|
|
25
|
+
| `zleap-context` | `zleap.context` | placeholder |
|
|
26
|
+
|
|
27
|
+
See https://github.com/Zleap-AI/zleap.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "zleap"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Umbrella metapackage for the zleap.* namespace — installs all zleap subpackages"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "Zleap Team", email = "contact@zleap.ai" }]
|
|
13
|
+
keywords = ["zleap", "namespace", "metapackage", "sag", "agent"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
]
|
|
23
|
+
# Bare `pip install zleap` pulls the whole family. Pre-release specifiers let the
|
|
24
|
+
# alpha placeholder packages resolve without requiring `--pre`.
|
|
25
|
+
dependencies = [
|
|
26
|
+
"zleap-sag>=0.4.0",
|
|
27
|
+
"zleap-agent>=0.1.0a1",
|
|
28
|
+
"zleap-memo>=0.1.0a1",
|
|
29
|
+
"zleap-context>=0.1.0a1",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://github.com/Zleap-AI/zleap"
|
|
34
|
+
Issues = "https://github.com/Zleap-AI/zleap/issues"
|
|
35
|
+
|
|
36
|
+
# Metadata-only distribution: ships no code so it never shadows the PEP 420
|
|
37
|
+
# `zleap` namespace; it exists purely to depend on the subpackages.
|
|
38
|
+
[tool.hatch.build.targets.wheel]
|
|
39
|
+
bypass-selection = true
|