YREA-SLS/SLS_Python
Kyler Olsen d8e38ada85 Added info string constants 2025-12-04 21:51:22 -07:00
..
sls_build_backend Renamed python module 2025-12-03 11:11:08 -07:00
sls_py Added info string constants 2025-12-04 21:51:22 -07:00
tests Python Project Skeleton 2025-12-02 19:10:11 -07:00
.gitignore Refactor versioning and metadata handling in the Python module 2025-12-02 22:51:34 -07:00
README.md Readded introductory description to README.md 2025-12-02 22:24:04 -07:00
pyproject.toml Renamed python module 2025-12-03 11:11:08 -07:00
sls_py.pyi Added info string constants 2025-12-04 21:51:22 -07:00

README.md

SLS Python

This is the Python implementation for the YREA SLS interpreter.

Building

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