mirror of
https://github.com/Wanderson-Magalhaes/Modern_GUI_PyDracula_PySide6_or_PyQt6.git
synced 2026-02-17 07:53:56 +00:00
v1.0.1
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal file
@@ -0,0 +1,23 @@
|
||||
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]
|
||||
)
|
||||
Reference in New Issue
Block a user