diff --git a/king_phisher/version.py b/king_phisher/version.py index 7a07f817..408f8d5e 100644 --- a/king_phisher/version.py +++ b/king_phisher/version.py @@ -34,7 +34,7 @@ version_info = collections.namedtuple('version_info', ['major', 'minor', 'micro'])(0, 1, 2) -version_label = 'beta' +version_label = '' version = "{0}.{1}.{2}".format(version_info.major, version_info.minor, version_info.micro) # distutils_version is compatible with distutils.version classes diff --git a/tools/cx_freeze.py b/tools/cx_freeze.py index 05237e07..265a171a 100644 --- a/tools/cx_freeze.py +++ b/tools/cx_freeze.py @@ -101,7 +101,6 @@ 'libzzz.dll', ] -## Create the list of includes as cx_freeze likes include_files = [] for dll in missing_dlls: include_files.append((os.path.join(include_dll_path, dll), dll)) @@ -120,22 +119,23 @@ executables = [ Executable( 'KingPhisher', - base = exe_base, - shortcutDir = 'DesktopFolder' + base=exe_base, + shortcutName='KingPhisher', + shortcutDir='ProgramMenuFolder' ) ] build_exe_options = dict( - compressed = False, - packages = ['email', 'gi', 'matplotlib', 'msgpack', 'paramiko'], - include_files = include_files + compressed=False, + packages=['email', 'gi', 'matplotlib', 'msgpack', 'paramiko'], + include_files=include_files ) setup( - name = 'KingPhisher', - author = 'Spencer McIntyre', - version = version.distutils_version, - description = 'King Phisher Client', - options = dict(build_exe = build_exe_options), - executables = executables + name='KingPhisher', + author='Spencer McIntyre', + version=version.distutils_version, + description='King Phisher Client', + options=dict(build_exe=build_exe_options), + executables=executables )