@echo off REM Build a portable single-file Windows EXE. REM Requires Python 3.10+ on PATH. setlocal if not exist .venv ( python -m venv .venv ) call .venv\Scripts\activate.bat pip install --upgrade pip pip install -r requirements.txt pip install pyinstaller pyinstaller ^ --onefile ^ --noconsole ^ --name sephiria_inv ^ --collect-submodules sephiria_inv ^ -p . ^ run.py echo. echo Build done. Output: dist\sephiria_inv.exe endlocal