File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed
Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,10 @@ dist-bin/localstack build: $(VENV_ACTIVATE) main.py
2626 $(PYINSTALLER_ARGS ) -n localstack \
2727 --hidden-import cookiecutter.main \
2828 --hidden-import cookiecutter.extensions \
29- --hidden-import localstack.dev.run.configurators \
30- --hidden-import localstack.pro.core.plugins \
31- --hidden-import localstack.pro.core.cli.localstack \
32- --hidden-import localstack.pro.core.extensions.plugins \
29+ --hidden-import localstack_cli.cli.core_plugin \
30+ --hidden-import localstack_cli.pro.core.cli.localstack \
3331 --collect-all=rich \
34- --copy-metadata localstack_ext \
35- --collect-data localstack.pro.core \
32+ --copy-metadata localstack \
3633 --additional-hooks-dir hooks
3734
3835dist-dir/localstack : PYINSTALLER_ARGS=--distpath=dist-dir
@@ -47,4 +44,3 @@ clean-venv:
4744 rm -rf $(VENV_DIR )
4845
4946.PHONY : all build clean clean-venv
50-
Original file line number Diff line number Diff line change 1+ from PyInstaller .utils .hooks import copy_metadata
2+
3+ # make sure to add the entrypoints data for localstack (for plux plugin discovery)
4+ datas = copy_metadata ('localstack' )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33freeze_support ()
44
55os .environ ["SKIP_PATCH_MOTO_ACCOUNT_ID" ] = "1"
6- from localstack .cli import main
6+ from localstack_cli .cli import main
77
88if __name__ == '__main__' :
99 main .main ()
You can’t perform that action at this time.
0 commit comments