14 lines
348 B
PowerShell
14 lines
348 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
python -m venv .venv
|
|
.\.venv\Scripts\python.exe -m pip install --upgrade pip
|
|
.\.venv\Scripts\pip.exe install -r requirements.txt
|
|
.\.venv\Scripts\pyinstaller.exe `
|
|
--noconfirm `
|
|
--windowed `
|
|
--name SyncTV `
|
|
--add-data "README_CLIENT.md;." `
|
|
synctv_client\main.py
|
|
|
|
Write-Host "Built dist\SyncTV\SyncTV.exe"
|