Commit 34d4e60a281f3afd349144e9d084cd5054df7bf7

Authored by decalage2
1 parent 3e0699db

setup: fixed issue #359 (bug when importing log_helper)

Showing 1 changed file with 3 additions and 1 deletions
setup.py
... ... @@ -27,6 +27,7 @@ to install this package.
27 27 # 2018-09-11 v0.54 PL: - olefile is now a dependency
28 28 # 2018-09-15 PL: - easygui is now a dependency
29 29 # 2018-09-22 PL: - colorclass is now a dependency
  30 +# 2018-10-27 PL: - fixed issue #359 (bug when importing log_helper)
30 31  
31 32 #--- TODO ---------------------------------------------------------------------
32 33  
... ... @@ -46,7 +47,7 @@ import os, fnmatch
46 47 #--- METADATA -----------------------------------------------------------------
47 48  
48 49 name = "oletools"
49   -version = '0.54dev2'
  50 +version = '0.54dev3'
50 51 desc = "Python tools to analyze security characteristics of MS Office and OLE files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), for Malware Analysis and Incident Response #DFIR"
51 52 long_desc = open('oletools/README.rst').read()
52 53 author = "Philippe Lagadec"
... ... @@ -81,6 +82,7 @@ classifiers=[
81 82 packages=[
82 83 "oletools",
83 84 "oletools.common",
  85 + "oletools.common.log_helper",
84 86 'oletools.thirdparty',
85 87 'oletools.thirdparty.xxxswf',
86 88 'oletools.thirdparty.prettytable',
... ...