Metadata-Version: 2.4
Name: clayengine
Version: 0.1.1
Summary: Python SDK scaffold for Clay Engine runtime and editor automation.
Project-URL: Homepage, https://clayengine.ai
Project-URL: Documentation, https://docs.clayengine.ai
Project-URL: Repository, https://github.com/clayengine/clay
Author-email: Andrew DiZenzo <andrewdizenzojhu@gmail.com>
License: MIT
License-File: LICENSE
Keywords: automation,clayengine,engine,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# clayengine

`clayengine` is the Python SDK scaffold for Clay Engine runtime and editor automation.

Version `0.1.1` remains intentionally small. It ships the package metadata, a minimal
public version API, and a clean `src/` layout so the package can keep evolving without
locking you into an overly large first release.

## Install

```bash
pip install clayengine
```

## Usage

```python
import clayengine

print(clayengine.version())
```

## Local Development

If `uv` is installed:

```bash
uv sync
uv run python -m unittest discover -s tests -v
uv build
```

Without `uv`:

```bash
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -U build
python -m unittest discover -s tests -v
python -m build
```
