Skip to content

Commit

Permalink
Set the version to 0.1.2 final
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed May 19, 2014
1 parent 56514b1 commit 8a77ae0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion king_phisher/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions tools/cx_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand All @@ -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
)

0 comments on commit 8a77ae0

Please sign in to comment.