Metadata-Version: 2.4
Name: mcp-photo-edit-core
Version: 0.1.0
Summary: Renderer-neutral typed core for photo editing clients and backends
Project-URL: Homepage, https://github.com/joshua5201/mcp-photo-edit-core
Project-URL: Repository, https://github.com/joshua5201/mcp-photo-edit-core
Project-URL: Issues, https://github.com/joshua5201/mcp-photo-edit-core/issues
License-Expression: Apache-2.0
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: pydantic<3,>=2.7
Description-Content-Type: text/markdown

# mcp-photo-edit-core

Typed, renderer-neutral models and backend interfaces shared by photo editing clients,
orchestration layers, and render services.

The package intentionally contains no RawTherapee, filesystem orchestration, MCP,
HTTP, or persistence implementation. Durable document state never contains a local
absolute path; local paths appear only on render command boundaries.

## Development

```shell
uv sync
uv run ruff format --check .
uv run ruff check .
uv run basedpyright
uv run pytest
uv run python -m build
```

Regenerate the checked-in JSON Schemas after changing a public model:

```shell
uv run python -m mcp_photo_edit_core.schema
```

The `1.0` schemas remain draft until they are verified against the project's fixed
RAW test corpus.
