From 33ae77f99a5a1d3f3ce16645ed99dd2b75c16e7b Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 23 Feb 2021 16:27:29 +0100 Subject: [PATCH] Removed unrequired imports --- setup32.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/setup32.py b/setup32.py index 36fd084..6a8a50e 100644 --- a/setup32.py +++ b/setup32.py @@ -3,10 +3,6 @@ from cx_Freeze import setup, Executable import sys import os import shutil -import requests -import urllib -import PyQt4 -from Queue import * if sys.platform == "win32": base = "Win32GUI" @@ -21,7 +17,7 @@ build_exe_options = { 'collections._locale', 'collections._struct', 'collections.array', - 'collections._weakref'], # Not excluding these is the only way I could get it to build while using configparser. I don't know why though. + 'collections._weakref'], } setup( @@ -38,7 +34,6 @@ setup( icon="pesterchum.ico", )]) -#Replace exe.win-amd64-2.7 with whatever it seems to generate as for you. if sys.platform == "win32": os.rename("build/exe.win32-2.7", "build/pesterchum")