Skip to content

Instantly share code, notes, and snippets.

@ssgkd
Last active October 4, 2015 05:16
Show Gist options
  • Select an option

  • Save ssgkd/349c59235d1df78720a4 to your computer and use it in GitHub Desktop.

Select an option

Save ssgkd/349c59235d1df78720a4 to your computer and use it in GitHub Desktop.
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