Metadata-Version: 2.5
Name: yertle
Version: 0.1.0
Summary: Python ecosystem for Yertle — CLI, SDK, and tooling for the Yertle architecture-graph platform.
Project-URL: Homepage, https://github.com/model-context/yertle-python
Project-URL: Repository, https://github.com/model-context/yertle-python
Project-URL: Issues, https://github.com/model-context/yertle-python/issues
Author: Yertle
License: MIT License
        
        Copyright (c) 2026 model-context
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: architecture,cli,graph,yertle
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: yertle-client>=0.1.0
Provides-Extra: cli
Requires-Dist: rich>=13.7; extra == 'cli'
Requires-Dist: typer>=0.12; extra == 'cli'
Provides-Extra: dev
Requires-Dist: pre-commit>=3.7; extra == 'dev'
Requires-Dist: pyright>=1.1.380; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.6; extra == 'dev'
Provides-Extra: mcp
Requires-Dist: fastmcp>=2.0; extra == 'mcp'
Requires-Dist: httpx>=0.27; extra == 'mcp'
Provides-Extra: sre
Requires-Dist: langchain-anthropic>=0.3.0; extra == 'sre'
Requires-Dist: langchain-core>=0.3.0; extra == 'sre'
Requires-Dist: langchain>=1.0; extra == 'sre'
Requires-Dist: langgraph>=1.0; extra == 'sre'
Requires-Dist: pydantic-settings>=2.4; extra == 'sre'
Requires-Dist: pydantic>=2.7; extra == 'sre'
Requires-Dist: python-dotenv>=1.0; extra == 'sre'
Requires-Dist: rich>=13.7; extra == 'sre'
Requires-Dist: typer>=0.12; extra == 'sre'
Description-Content-Type: text/markdown

# yertle-python

Python ecosystem for [Yertle](https://yertle.com) — CLI, SDK, and tooling for
working with Yertle architecture graphs from Python.

> **Status:** under construction. Initial scaffolding only.

## Planned shape

A single PyPI package `yertle` with extras for different consumers:

```bash
pip install yertle              # SDK only (planned)
pip install yertle[cli]         # + `yertle` command
pip install yertle[sre]         # + `yertle-sre` agent (planned)
pip install yertle[mcp]         # + `yertle-mcp` MCP server (planned)
```

## Development

Requires [`uv`](https://docs.astral.sh/uv/) and Python 3.11+.

```bash
make install        # uv sync --extra cli --extra dev
make check          # lint + format-check + typecheck + test
```

See `make help` for the full target list.

## License

MIT. See [LICENSE](./LICENSE).
