This repository has been archived on 2024-11-05. You can view files and clone it, but cannot push or open issues/pull-requests.
lamb/build_bin.py

10 lines
202 B
Python
Raw Normal View History

2022-10-21 21:01:06 -07:00
import PyInstaller.__main__
# Run this file to build a standalone executable.
# pyinstaller does not build cross-platform.
PyInstaller.__main__.run([
"lamb/__main__.py",
"--onefile",
"--console"
])