#!/bin/bash
echo "Building SniperGUI for macOS..."
pip3 install PyQt5 httpx requests pyinstaller
pyinstaller --windowed --onefile --name "SniperGUI" sniper.py
echo ""
echo "Done! Open dist/SniperGUI.app to run."
open dist/SniperGUI.app
