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