From 2dabd4bf302b6fe1991e9f3955e46a439b2680e0 Mon Sep 17 00:00:00 2001 From: Kyler Date: Wed, 3 Dec 2025 11:11:08 -0700 Subject: [PATCH] Renamed python module --- SLS_Python/pyproject.toml | 4 ++-- SLS_Python/sls_build_backend/write_version.py | 2 +- SLS_Python/{sls => sls_py}/__init__.py | 0 SLS_Python/{sls => sls_py}/__main__.py | 0 SLS_Python/{sls => sls_py}/_version.py | 0 SLS_Python/{sls => sls_py}/builtin.py | 0 SLS_Python/{sls => sls_py}/file.py | 0 SLS_Python/{sls => sls_py}/interpreter.py | 0 SLS_Python/{sls => sls_py}/lexer.py | 0 SLS_Python/{sls => sls_py}/meta.py | 0 SLS_Python/{sls => sls_py}/repl.py | 0 11 files changed, 3 insertions(+), 3 deletions(-) rename SLS_Python/{sls => sls_py}/__init__.py (100%) rename SLS_Python/{sls => sls_py}/__main__.py (100%) rename SLS_Python/{sls => sls_py}/_version.py (100%) rename SLS_Python/{sls => sls_py}/builtin.py (100%) rename SLS_Python/{sls => sls_py}/file.py (100%) rename SLS_Python/{sls => sls_py}/interpreter.py (100%) rename SLS_Python/{sls => sls_py}/lexer.py (100%) rename SLS_Python/{sls => sls_py}/meta.py (100%) rename SLS_Python/{sls => sls_py}/repl.py (100%) diff --git a/SLS_Python/pyproject.toml b/SLS_Python/pyproject.toml index adf20da..f909e38 100644 --- a/SLS_Python/pyproject.toml +++ b/SLS_Python/pyproject.toml @@ -14,7 +14,7 @@ requires-python = ">=3.10" dependencies = [] [tool.setuptools] -packages = ["sls"] +packages = ["sls_py"] [project.scripts] -sls = "sls.__main__:main" +sls_py = "sls_py.__main__:main" diff --git a/SLS_Python/sls_build_backend/write_version.py b/SLS_Python/sls_build_backend/write_version.py index 108df93..2f52dc1 100644 --- a/SLS_Python/sls_build_backend/write_version.py +++ b/SLS_Python/sls_build_backend/write_version.py @@ -12,7 +12,7 @@ root = pathlib.Path(__file__).resolve().parents[1] # templates live inside the backend package template = root / "sls_build_backend" / "_version.py.in" template_dev = root / "sls_build_backend" / "_version_dev.py.in" -output = root / "sls" / "_version.py" +output = root / "sls_py" / "_version.py" def get_commit(): diff --git a/SLS_Python/sls/__init__.py b/SLS_Python/sls_py/__init__.py similarity index 100% rename from SLS_Python/sls/__init__.py rename to SLS_Python/sls_py/__init__.py diff --git a/SLS_Python/sls/__main__.py b/SLS_Python/sls_py/__main__.py similarity index 100% rename from SLS_Python/sls/__main__.py rename to SLS_Python/sls_py/__main__.py diff --git a/SLS_Python/sls/_version.py b/SLS_Python/sls_py/_version.py similarity index 100% rename from SLS_Python/sls/_version.py rename to SLS_Python/sls_py/_version.py diff --git a/SLS_Python/sls/builtin.py b/SLS_Python/sls_py/builtin.py similarity index 100% rename from SLS_Python/sls/builtin.py rename to SLS_Python/sls_py/builtin.py diff --git a/SLS_Python/sls/file.py b/SLS_Python/sls_py/file.py similarity index 100% rename from SLS_Python/sls/file.py rename to SLS_Python/sls_py/file.py diff --git a/SLS_Python/sls/interpreter.py b/SLS_Python/sls_py/interpreter.py similarity index 100% rename from SLS_Python/sls/interpreter.py rename to SLS_Python/sls_py/interpreter.py diff --git a/SLS_Python/sls/lexer.py b/SLS_Python/sls_py/lexer.py similarity index 100% rename from SLS_Python/sls/lexer.py rename to SLS_Python/sls_py/lexer.py diff --git a/SLS_Python/sls/meta.py b/SLS_Python/sls_py/meta.py similarity index 100% rename from SLS_Python/sls/meta.py rename to SLS_Python/sls_py/meta.py diff --git a/SLS_Python/sls/repl.py b/SLS_Python/sls_py/repl.py similarity index 100% rename from SLS_Python/sls/repl.py rename to SLS_Python/sls_py/repl.py