Metadata-Version: 2.4
Name: sc-compose
Version: 1.2.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Rust
Summary: Python bindings for sc-compose composition APIs
Home-Page: https://github.com/randlee/sc-compose
Author: Randlee
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/randlee/sc-compose
Project-URL: Homepage, https://github.com/randlee/sc-compose

# sc-compose Python bindings

`sc-compose` provides Python bindings for the standalone template-composition
engine from the `sc-compose` project.

The package targets Python 3.11+ and exposes the composition APIs as a native
extension built with `maturin` and `pyo3`.

## Install

```bash
pip install sc-compose
```

For release rehearsals, pre-release artifacts are published to TestPyPI:

```bash
pip install -i https://test.pypi.org/simple/ sc-compose
```

## Example

```python
from sc_compose import render_template

result = render_template("Hello {{ name }}", {"name": "world"})
print(result.output)
```

## Project

- Repository: <https://github.com/randlee/sc-compose>
- Documentation: see the repository `README.md` and `docs/`

