Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. import sys
  2. from cx_Freeze import setup, Executable
  3.  
  4. includefiles = ["Icon.ico", "Fonts/cour.ttf", "GameData/lines.wlia", "Images/Background.png", "Images/CutlarAngry.png", "Images/CutlarRest.png", "Images/CutlarTag.png", "Images/CutlarTagTalk.png", "Images/GriffinAngry.png", "Images/GriffinRest.png", "Images/GriffinTag.png", "Images/GriffinTagTalk.png", "Images/PigRest.png", "Images/PigShock.png", "Images/PigTag.png", "Images/PigTagTalk.png", "Images/SpiritPigRest.png", "Images/SpiritPigShock.png", "Images/wherearetheynow.png"]
  5.  
  6. # Dependencies are automatically detected, but it might need fine tuning.
  7. build_exe_options = {"packages": ["sys", "time", "os", "pickle", "textwrap", "pygame", "enum"], "excludes": []}
  8.  
  9. # GUI applications require a different base on Windows (the default is for a
  10. # console application).
  11. base = None
  12. if sys.platform == "win32":
  13. base = "Win32GUI"
  14.  
  15. setup( name = "datingSim",
  16. version = "1.0",
  17. description = "A War of Nutrition",
  18. options = {"build_exe": build_exe_options,'includefiles':includefiles},
  19. executables = [Executable("datingSim.py", base=base, icon="Icon.ico")])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement