mit neuen venv und exe-Files

This commit is contained in:
2024-11-03 17:26:54 +01:00
parent 07c05a338a
commit 0c373ff593
15115 changed files with 1998469 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import os
import sys
class UIOpenMode:
NONE = 0
CHROME = 1
USER_DEFAULT = 2
# Temporary directory for packaging scripts to speed up consecutive builds. Created on application start.
temporary_directory = None
# Frontend
FRONTEND_ASSET_FOLDER = os.path.join(os.path.dirname(os.path.realpath(__file__)), "web")
# Pre-defined variables by Python
DEFAULT_RECURSION_LIMIT = sys.getrecursionlimit()
# Argument-influenced configuration
package_filename = None
ui_open_mode = UIOpenMode.CHROME
supplied_ui_configuration = None
default_output_directory = os.path.abspath("output")
language_hint = None