Skip to content

Instantly share code, notes, and snippets.

@matancev
Created October 28, 2013 17:36
Show Gist options
  • Select an option

  • Save matancev/7201139 to your computer and use it in GitHub Desktop.

Select an option

Save matancev/7201139 to your computer and use it in GitHub Desktop.
import sys
from cx_Freeze import setup, Executable
build_exe_options = {"packages": ["os", "re", "socket", "sqlite3"]}
base = None
if sys.platform == "win32":
base = "Win32GUI"
setup( name = "GetIt",
version = "0.1",
description = "Get password",
options = {"build_exe": build_exe_options},
executables = [Executable("GetIt.py"), Executable("GetPassServer.py")])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment