Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. from cx_Freeze import setup, Executable
  2. exe=Executable(
  3. script="loginpage.py",
  4. base="Win32Gui",
  5. )
  6. includefiles=[]
  7. includes=[]
  8. excludes=[]
  9. packages=[]
  10. setup(
  11.  
  12. version = "0.0",
  13. description = "No Description",
  14. author = "Name",
  15. name = "App name",
  16. options = {'build_exe': {'excludes':excludes,'packages':packages,'include_files':includefiles}},
  17. executables = [exe]
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement