Metadata-Version: 2.4
Name: sls_python
Version: 0.0.2a0
Summary: Python reimplementation of the SLS C project
Author: Kyler Olsen
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# SLS Python

This is the Python implementation for the YREA SLS interpreter.

## Building

```bash
cd SLS_Python
python -m venv .venv
source .venv/bin/activate

pip install build wheel "setuptools>=61.0"

# Install the backend (one-time setup)
pip install -e sls_build_backend

# Build with --no-isolation (required because backend is local)
python -m build --no-isolation
```
