Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
likeitneverwentaway committed Aug 31, 2015
1 parent 26a9ede commit b1faead
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import cx_Freeze
import sys
import requests.certs

base = "Win32GUI"

executables = [cx_Freeze.Executable("Soundcloud App.py", base = base, icon = "unnamed.ico")]

cx_Freeze.setup(
name ="SoundcloudApp",
options = {"build_exe":{"packages":["tkinter","soundcloud"], "include_files":["cacert.pem","ok.png", "cross.png", "loupe.png"] }},
executables = executables
)

0 comments on commit b1faead

Please sign in to comment.