Skip to content

Commit b1faead

Browse files
author
likeitneverwentaway
committed
Create setup.py
1 parent 26a9ede commit b1faead

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import cx_Freeze
2+
import sys
3+
import requests.certs
4+
5+
base = "Win32GUI"
6+
7+
executables = [cx_Freeze.Executable("Soundcloud App.py", base = base, icon = "unnamed.ico")]
8+
9+
cx_Freeze.setup(
10+
name ="SoundcloudApp",
11+
options = {"build_exe":{"packages":["tkinter","soundcloud"], "include_files":["cacert.pem","ok.png", "cross.png", "loupe.png"] }},
12+
executables = executables
13+
)

0 commit comments

Comments
 (0)