YREA-SLS/SLS_Python
Kyler Olsen 2c8e459cac Added file and main 2025-12-02 23:34:29 -07:00
..
sls Added file and main 2025-12-02 23:34:29 -07:00
sls_build_backend Refactor version generation and error handling in versioning scripts 2025-12-02 23:18:41 -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 Refactor versioning and metadata handling in the Python module 2025-12-02 22:51:34 -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