Metadata-Version: 2.4
Name: zleap
Version: 0.1.0
Summary: Umbrella metapackage for the zleap.* namespace — installs all zleap subpackages
Project-URL: Homepage, https://github.com/Zleap-AI/zleap
Project-URL: Issues, https://github.com/Zleap-AI/zleap/issues
Author-email: Zleap Team <contact@zleap.ai>
License-Expression: MIT
License-File: LICENSE
Keywords: agent,metapackage,namespace,sag,zleap
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: zleap-agent>=0.1.0a1
Requires-Dist: zleap-context>=0.1.0a1
Requires-Dist: zleap-memo>=0.1.0a1
Requires-Dist: zleap-sag>=0.4.0
Description-Content-Type: text/markdown

# zleap

Umbrella metapackage for the **`zleap.*`** namespace. It ships no code of its own —
it simply pulls in the whole family so you can grab everything with one name.

```bash
pip install zleap            # installs sag + agent + memo + context
```

```python
from zleap import sag        # e.g. from zleap.sag import DataEngine
```

Want just one component? Install its distribution directly:

```bash
pip install zleap-sag        # only the SAG data engine
```

| Distribution | Import | Status |
|---|---|---|
| `zleap-sag` | `zleap.sag` | data engine (stable) |
| `zleap-agent` | `zleap.agent` | placeholder |
| `zleap-memo` | `zleap.memo` | placeholder |
| `zleap-context` | `zleap.context` | placeholder |

See https://github.com/Zleap-AI/zleap.
