20 lines
378 B
Markdown
20 lines
378 B
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
|
|
```
|