Remove setup.py/cx_freeze setup, currently superseded by pyinstaller.

This commit is contained in:
Dpeta 2023-03-14 15:13:59 +01:00
parent 3fd5815677
commit b046798724
No known key found for this signature in database
GPG key ID: 51227517CEA0030C
2 changed files with 0 additions and 151 deletions

View file

@ -126,10 +126,6 @@ Here's a quick guide on how to freeze Pesterchum, (that is, packaging it with py
Ideally, you'll want to create and activate a [virtual environment](https://docs.python.org/3/library/venv.html) before anything else, this is not 100% required though. Ideally, you'll want to create and activate a [virtual environment](https://docs.python.org/3/library/venv.html) before anything else, this is not 100% required though.
### [CX_FREEZE](https://cx-freeze.readthedocs.io/en/latest/index.html)
1. ``python3 -m pip install cx_freeze``
2. ``python3 setup.py build``
### [PYINSTALLER](https://pyinstaller.readthedocs.io/en/stable/) ### [PYINSTALLER](https://pyinstaller.readthedocs.io/en/stable/)
1. ``python3 -m pip install pyinstaller`` 1. ``python3 -m pip install pyinstaller``
2. ``python3 pyinst.py`` 2. ``python3 pyinst.py``

View file

@ -1,147 +0,0 @@
# Windows-only cx_freeze setup file, macOS may work but I've not tested it.
import sys
from cx_Freeze import setup, Executable
from version import buildVersion
if sys.version_info < (3, 0, 0):
sys.exit("Python versions lower than 3 are not supported.")
def is_64bit() -> bool:
return sys.maxsize > 2**32
path = ""
base = None
if sys.platform == "win32":
base = "Win32GUI"
path = sys.path
if is_64bit() == True:
path.append(
r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x64"
)
elif is_64bit() == False:
path.append(
r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x86"
)
print("Path = " + str(path))
includefiles = [
"quirks",
"smilies",
"themes",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"PCskins.png",
"Pesterchum.png",
]
build_exe_options = {
# "includes": ['PyQt6.QtCore',
# 'PyQt6.QtGui',
# 'PyQt6.QtWidgets'],
"excludes": [
"collections.sys",
"collections._sre",
"collections._json",
"collections._locale",
"collections._struct",
"collections.array",
"collections._weakref",
"PyQt6.QtMultimedia",
"PyQt6.QtDBus",
"PyQt6.QtDeclarative",
"PyQt6.QtHelp",
"PyQt6.QtNetwork",
"PyQt6.QtSql",
"PyQt6.QtSvg",
"PyQt6.QtTest",
"PyQt6.QtWebKit",
"PyQt6.QtXml",
"PyQt6.QtXmlPatterns",
"PyQt6.phonon",
"PyQt6.QtAssistant",
"PyQt6.QtDesigner",
"PyQt6.QAxContainer",
"pygame.tests",
"pydoc_data",
],
"include_files": includefiles,
"include_msvcr": True, # cx_freeze copies 64-bit binaries always?
"path": path # Improved in 6.6, path to be safe
# VCRUNTIME140.dll <3
}
if (
(sys.platform == "win32")
& (sys.version_info.major == 3)
& (sys.version_info.minor == 8)
):
build_exe_options["excludes"].append("tkinter")
bdist_mac_options = {"iconfile": "trayicon32.icns", "bundle_name": "Pesterchum"}
description = "Pesterchum"
icon = "pesterchum.ico"
# See https://stackoverflow.com/questions/15734703/use-cx-freeze-to-create-an-msi-that-adds-a-shortcut-to-the-desktop
shortcut_table = [
(
"DesktopShortcut", # Shortcut
"DesktopFolder", # Directory_
"Pesterchum", # Name
"TARGETDIR", # Component_
"[TARGETDIR]pesterchum.exe", # Target
None, # Arguments
description, # Description
None, # Hotkey
None, # Icon (Is inherited from pesterchum.exe)
None, # IconIndex
None, # ShowCmd
"TARGETDIR", # WkDir
),
(
"StartMenuShortcut", # Shortcut
"StartMenuFolder", # Directory_
"Pesterchum", # Name
"TARGETDIR", # Component_
"[TARGETDIR]pesterchum.exe", # Target
None, # Arguments
description, # Description
None, # Hotkey
None, # Icon
None, # IconIndex
None, # ShowCmd
"TARGETDIR", # WkDir
),
]
msi_data = {"Shortcut": shortcut_table}
bdist_msi_options = {
"data": msi_data,
"summary_data": {"comments": "FL1P", "keywords": "Pesterchum"},
"upgrade_code": "{86740d75-f1f2-48e8-8266-f36395a2d77f}",
"add_to_path": False, # !!!
"all_users": False,
"install_icon": "pesterchum.ico",
}
setup(
name="Pesterchum",
version=buildVersion,
url="https://github.com/Dpeta/pesterchum-alt-servers",
description=description, # "P3ST3RCHUM",
options={
"build_exe": build_exe_options,
"bdist_msi": bdist_msi_options,
"bdist_mac": bdist_mac_options,
},
packages="",
executables=[Executable("pesterchum.py", base=base, icon=icon)],
)