Metadata-Version: 2.4
Name: mto
Version: 0.11.0.dev1
Summary: Planning-stage placeholder reservation for monotone operators.
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
Author-email: Jacob Stewart <jacob@swarmauri.com>
License-Expression: Apache-2.0
Keywords: crdt,experimental,lattice,monotone,mto,operators,placeholder,semilattice,swarmauri
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Typing :: Typed
Requires-Python: <3.15,>=3.10
Description-Content-Type: text/markdown

![Swarmauri Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/swarmauri_sdk_brand.png)

<p align="center">
    <a href="https://pepy.tech/project/mto/">
        <img src="https://static.pepy.tech/badge/mto/month" alt="PyPI - Downloads"/></a>
    <a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/mto/">
        <img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/mto.svg"/></a>
    <a href="https://pypi.org/project/mto/">
        <img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
    <a href="https://pypi.org/project/mto/">
        <img src="https://img.shields.io/pypi/l/mto" alt="PyPI - License"/></a>
    <a href="https://pypi.org/project/mto/">
        <img src="https://img.shields.io/pypi/v/mto?label=mto&color=green" alt="PyPI - mto"/></a>
    <a href="https://discord.gg/N4UpBuQv8T">
        <img src="https://img.shields.io/badge/Discord-Join%20Chat-5865F2?logo=discord&logoColor=white" alt="Discord"/></a></p>

# mto

`mto` is a planning-stage placeholder reservation for monotone operators.

The package reserves the short `mto` distribution and import coordinate while the operator
catalog is governed and finalized. The intended scope is a compact monotone-operator toolkit
for deterministic aggregation, lattice and semilattice joins, CRDT-style state merges,
fixpoint workflows, evidence rollups, and related positive dataflow patterns.

`mto` supports Python 3.10 through 3.12.

## Features

- Reserves the `mto` package coordinate for monotone-operator work.
- Documents the intended monotone-operator scope without exposing provisional APIs.
- Provides a typed import package with placeholder metadata for downstream planning checks.

## Installation

### uv

```bash
uv add mto
```

### pip

```bash
pip install mto
```

## Usage

The package module is `mto`.

```python
import mto

assert mto.__version__ == "0.1.0"
assert mto.PLANNING_STAGE is True
```

No monotone-operator APIs are committed yet. Future APIs should be added only after the
operator catalog, naming, and compatibility surface are finalized.

## Development

```bash
uv run --directory pkgs --package mto ruff format experimental/mto
uv run --directory pkgs --package mto ruff check experimental/mto --fix
uv run --directory pkgs --package mto pytest experimental/mto/tests
```


