mirror of
https://github.com/Wanderson-Magalhaes/Modern_GUI_PyDracula_PySide6_or_PyQt6.git
synced 2026-02-16 23:43:56 +00:00
25 lines
456 B
Python
25 lines
456 B
Python
import sys
|
|
import os
|
|
from cx_Freeze import setup, Executable
|
|
|
|
# ADD FILES
|
|
files = ['icon.ico','themes/']
|
|
|
|
# TARGET
|
|
target = Executable(
|
|
script="main.py",
|
|
base="Win32GUI",
|
|
icon="icon.ico"
|
|
)
|
|
|
|
# SETUP CX FREEZE
|
|
setup(
|
|
name = "PyDracula",
|
|
version = "1.0",
|
|
description = "Modern GUI for Python applications",
|
|
author = "Wanderson M. Pimenta",
|
|
options = {'build_exe' : {'include_files' : files}},
|
|
executables = [target]
|
|
|
|
)
|