Delete setup.py

This commit is contained in:
Surferlul 2020-12-03 01:12:16 +01:00 committed by GitHub
parent c8f0075a3a
commit a36b9a986c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +0,0 @@
from cx_Freeze import setup, Executable
base = None
executables = [Executable("backend.py", base=base), Executable("wrapper.py", base=base), Executable("Changer.py", base=base)]
packages = ["idna", "os", "ctypes", "praw", "glob", "time", "urllib", "progressbar", "imgur_downloader", "wx", "subprocess", "_thread"]
options = {
'build_exe': {
'build_exe': '.\\build',
'packages':packages,
},
}
setup(
name = "Changer",
options = options,
version = "1.1",
description = 'Wallpaper changer by u/Surferlul',
executables = executables
)