Commit 6c64d5d1ed04b24ed57218f1e2b65c402356b6fe

Authored by Philippe Lagadec
1 parent 430c7b98

updated setup.py for v0.08

Showing 1 changed file with 7 additions and 2 deletions
setup.py
... ... @@ -12,6 +12,7 @@ to install this package.
12 12  
13 13 # 2014-08-27 v0.06: - added doc subfolder
14 14 # 2015-01-05 v0.07: - added xglob, prettytable
  15 +# 2015-02-08 v0.08: - added DridexUrlDecoder
15 16  
16 17 #--- TODO ---------------------------------------------------------------------
17 18  
... ... @@ -33,7 +34,7 @@ import sys, os, fnmatch
33 34 #--- METADATA -----------------------------------------------------------------
34 35  
35 36 name = "oletools"
36   -version = '0.08a'
  37 +version = '0.08'
37 38 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."
38 39 long_desc = open('oletools/README.rst').read()
39 40 author ="Philippe Lagadec"
... ... @@ -64,7 +65,8 @@ packages=[
64 65 'oletools.thirdparty.easygui',
65 66 'oletools.thirdparty.xxxswf',
66 67 'oletools.thirdparty.prettytable',
67   - 'oletools.thirdparty.xglob'
  68 + 'oletools.thirdparty.xglob',
  69 + 'oletools.thirdparty.DridexUrlDecoder',
68 70 ]
69 71 ##setupdir = '.'
70 72 ##package_dir={'': setupdir}
... ... @@ -156,6 +158,9 @@ package_data={
156 158 'oletools.thirdparty.prettytable': [
157 159 'CHANGELOG', 'COPYING', 'README'
158 160 ],
  161 + 'oletools.thirdparty.DridexUrlDecoder': [
  162 + 'LICENSE.txt',
  163 + ],
159 164 }
160 165  
161 166  
... ...