-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-config,txt
More file actions
31 lines (24 loc) · 987 Bytes
/
build-config,txt
File metadata and controls
31 lines (24 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Build Configuration File
# This file contains all the settings for building your application
# Lines starting with # are comments and will be ignored
# Format: KEY=VALUE (no spaces around the equals sign)
# Required Configuration
APP_NAME=SilverFlagAPPLICATION
APP_VERSION=1.0.0
APP_AUTHOR=SilverFlag
APP_DESCRIPTION=A demonstration application
APP_URL=https://silverflag.net
# Optional Configuration (with defaults)
# Path to your main Python script
MAIN_SCRIPT=src/main.py
# Path to your application icon (PNG format recommended)
ICON_PATH=assets/logo.png
# License file path (used for Windows installer)
LICENSE_FILE=LICENSE
# DMG background image for macOS (optional, uncomment to enable)
# Use 800 x 600 at 300 dpi
# DMG_BACKGROUND=assets/dmg-background.png
# Build as single file (true/false) - Note: macOS always builds as app bundle
BUILD_ONEFILE=true
# Additional PyInstaller options (optional)
# PYINSTALLER_EXTRA_ARGS=--exclude-module tkinter --hidden-import requests