mirror of
https://github.com/Wanderson-Magalhaes/PyBlackBox_Qt_Widgets_PySide6_Or_PyQt6_v1.0.0.git
synced 2026-05-10 14:05:27 +00:00
first commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
import sys
|
||||
import os
|
||||
from cx_Freeze import setup, Executable
|
||||
# Packages
|
||||
from app.packages.pyside_or_pyqt import * # Qt
|
||||
from app.packages.widgets import * # Widgets
|
||||
# GUIs
|
||||
from app.uis.login.ui_login import Ui_Login # Login / Splash Screen
|
||||
from app.uis.main_window.ui_main import Ui_MainWindow # MainWindow
|
||||
from app.uis.chat.page_messages import Chat # Chat Widget
|
||||
# Modules
|
||||
import app.modules.ui_functions.functions as ui_functions
|
||||
import app.modules.app_settings.settings as app_settings
|
||||
|
||||
# ADD FILES/FOLDERS
|
||||
files = ['icon.ico', 'settings.json','images/']
|
||||
|
||||
# TARGET
|
||||
target = Executable(
|
||||
script="main.py",
|
||||
base="Win32GUI",
|
||||
icon="icon.ico"
|
||||
)
|
||||
|
||||
# SETUP CX FREEZE
|
||||
setup(
|
||||
name = "PyBlackBOX",
|
||||
version = "1.0",
|
||||
description = "Modern GUI for desktop chat",
|
||||
author = "Wanderson M. Pimenta",
|
||||
options = {'build_exe' : {'include_files' : files}},
|
||||
executables = [target]
|
||||
)
|
||||
Reference in New Issue
Block a user