Created
October 28, 2013 17:36
-
-
Save matancev/7201139 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
| 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