From 6c64d5d1ed04b24ed57218f1e2b65c402356b6fe Mon Sep 17 00:00:00 2001 From: Philippe Lagadec Date: Sun, 8 Feb 2015 22:46:16 +0100 Subject: [PATCH] updated setup.py for v0.08 --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 385a9b0..9a583e2 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ to install this package. # 2014-08-27 v0.06: - added doc subfolder # 2015-01-05 v0.07: - added xglob, prettytable +# 2015-02-08 v0.08: - added DridexUrlDecoder #--- TODO --------------------------------------------------------------------- @@ -33,7 +34,7 @@ import sys, os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.08a' +version = '0.08' desc = "Python tools to analyze security characteristics of MS OLE2 files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office documents, for Malware Analysis and Incident Response." long_desc = open('oletools/README.rst').read() author ="Philippe Lagadec" @@ -64,7 +65,8 @@ packages=[ 'oletools.thirdparty.easygui', 'oletools.thirdparty.xxxswf', 'oletools.thirdparty.prettytable', - 'oletools.thirdparty.xglob' + 'oletools.thirdparty.xglob', + 'oletools.thirdparty.DridexUrlDecoder', ] ##setupdir = '.' ##package_dir={'': setupdir} @@ -156,6 +158,9 @@ package_data={ 'oletools.thirdparty.prettytable': [ 'CHANGELOG', 'COPYING', 'README' ], + 'oletools.thirdparty.DridexUrlDecoder': [ + 'LICENSE.txt', + ], } -- libgit2 0.21.4