maint(): refactor directory structure

This commit is contained in:
Rim 2025-01-04 12:04:28 -05:00
parent c3e0db32d8
commit cb0a75cf68
45 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -2,9 +2,9 @@
cd /d %~dp0 :: Change directory to the location of this batch file
call ../venv/Scripts/activate :: Activate the virtual environment
pyinstaller --noconfirm --onefile --console --icon "../assets/icon.ico" get_cod_stats.py --distpath="../build/bin" -n "get_cod_stats"
pyinstaller --noconfirm --onefile --console --icon "../assets/icon.ico" main.py --distpath="../build/bin" -n "get_cod_stats"
rmdir /s /q build
del /q "get_cod_stats.spec"
pause
pause

View File

@ -4,7 +4,7 @@ import subprocess
import PyInstaller.__main__
# Constants for your project
SCRIPT = "get_cod_stats.py"
SCRIPT = "main.py"
ICON = "assets/icon.ico"
NAME = "get_cod_stats"
DIST_PATH = "bin"