From 7a54e113c584aab7188439bcdd3f01bca3cc7e8d Mon Sep 17 00:00:00 2001 From: Philippe Lagadec Date: Mon, 5 Jan 2015 21:32:52 +0100 Subject: [PATCH] updated setup.py for v0.07, including xglob and prettytable --- setup.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3e08a64..de1e0cb 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,10 @@ to install this package. #--- CHANGELOG ---------------------------------------------------------------- # 2014-08-27 v0.06: - added doc subfolder +# 2015-01-05 v0.07: - added xglob, prettytable #--- TODO --------------------------------------------------------------------- -# + avoid using data_files, which installs files in the main python dir/oletools # - deploy scripts? # - version for python 3 using 2to3 @@ -33,7 +33,7 @@ import sys, os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.06' +version = '0.07' 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" @@ -144,14 +144,18 @@ package_data={ 'README.txt', 'LICENSE.txt', ], - + 'oletools.thirdparty.xglob': [ + 'LICENSE.txt', + ], 'oletools.thirdparty.easygui': [ 'LICENSE.txt', ], - 'oletools.thirdparty.xxxswf': [ 'LICENSE.txt', ], + 'oletools.thirdparty.prettytable': [ + 'CHANGELOG', 'COPYING', 'README' + ], } -- libgit2 0.21.4