Last active
October 4, 2015 05:16
-
-
Save ssgkd/349c59235d1df78720a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from cx_Freeze import setup,Executable | |
| setup( | |
| name = "sqrt", | |
| version="0.1", | |
| description="sqrt", | |
| executables=[Executable("sqrt.py")], | |
| options = { | |
| "build_exe": { | |
| # "includes": includes, | |
| # "excludes": excludes, | |
| # "packages": packages, | |
| # "path": path,q | |
| "create_shared_zip": False, | |
| # don't generate Library.zip | |
| "append_script_to_exe": True, | |
| # don't generate MyApp.zip file. | |
| } | |
| } | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment