YREA-SLS/SLS_Python
Kyler Olsen 1a11569e9a Readded introductory description to README.md 2025-12-02 22:24:04 -07:00
..
sls Created sls_build_backend module to help build the python module 2025-12-02 22:22:53 -07:00
sls_build_backend Update build configuration and enhance versioning process 2025-12-02 22:23:11 -07:00
tests Python Project Skeleton 2025-12-02 19:10:11 -07:00
.gitignore worked on filling in the project 2025-12-02 21:38:27 -07:00
README.md Readded introductory description to README.md 2025-12-02 22:24:04 -07:00
pyproject.toml Update build configuration and enhance versioning process 2025-12-02 22:23:11 -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