Renamed python module

This commit is contained in:
Kyler Olsen 2025-12-03 11:11:08 -07:00
parent 2c8e459cac
commit 2dabd4bf30
11 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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():