Commit 7a54e113c584aab7188439bcdd3f01bca3cc7e8d

Authored by Philippe Lagadec
1 parent 8aa2e9bc

updated setup.py for v0.07, including xglob and prettytable

Showing 1 changed file with 8 additions and 4 deletions
setup.py
... ... @@ -11,10 +11,10 @@ to install this package.
11 11 #--- CHANGELOG ----------------------------------------------------------------
12 12  
13 13 # 2014-08-27 v0.06: - added doc subfolder
  14 +# 2015-01-05 v0.07: - added xglob, prettytable
14 15  
15 16 #--- TODO ---------------------------------------------------------------------
16 17  
17   -# + avoid using data_files, which installs files in the main python dir/oletools
18 18 # - deploy scripts?
19 19 # - version for python 3 using 2to3
20 20  
... ... @@ -33,7 +33,7 @@ import sys, os, fnmatch
33 33 #--- METADATA -----------------------------------------------------------------
34 34  
35 35 name = "oletools"
36   -version = '0.06'
  36 +version = '0.07'
37 37 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 38 long_desc = open('oletools/README.rst').read()
39 39 author ="Philippe Lagadec"
... ... @@ -144,14 +144,18 @@ package_data={
144 144 'README.txt',
145 145 'LICENSE.txt',
146 146 ],
147   -
  147 + 'oletools.thirdparty.xglob': [
  148 + 'LICENSE.txt',
  149 + ],
148 150 'oletools.thirdparty.easygui': [
149 151 'LICENSE.txt',
150 152 ],
151   -
152 153 'oletools.thirdparty.xxxswf': [
153 154 'LICENSE.txt',
154 155 ],
  156 + 'oletools.thirdparty.prettytable': [
  157 + 'CHANGELOG', 'COPYING', 'README'
  158 + ],
155 159 }
156 160  
157 161  
... ...