Commit 34d4e60a281f3afd349144e9d084cd5054df7bf7
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,6 +27,7 @@ to install this package. | ||
| 27 | # 2018-09-11 v0.54 PL: - olefile is now a dependency | 27 | # 2018-09-11 v0.54 PL: - olefile is now a dependency |
| 28 | # 2018-09-15 PL: - easygui is now a dependency | 28 | # 2018-09-15 PL: - easygui is now a dependency |
| 29 | # 2018-09-22 PL: - colorclass is now a dependency | 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 | #--- TODO --------------------------------------------------------------------- | 32 | #--- TODO --------------------------------------------------------------------- |
| 32 | 33 | ||
| @@ -46,7 +47,7 @@ import os, fnmatch | @@ -46,7 +47,7 @@ import os, fnmatch | ||
| 46 | #--- METADATA ----------------------------------------------------------------- | 47 | #--- METADATA ----------------------------------------------------------------- |
| 47 | 48 | ||
| 48 | name = "oletools" | 49 | name = "oletools" |
| 49 | -version = '0.54dev2' | 50 | +version = '0.54dev3' |
| 50 | 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 | 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 | long_desc = open('oletools/README.rst').read() | 52 | long_desc = open('oletools/README.rst').read() |
| 52 | author = "Philippe Lagadec" | 53 | author = "Philippe Lagadec" |
| @@ -81,6 +82,7 @@ classifiers=[ | @@ -81,6 +82,7 @@ classifiers=[ | ||
| 81 | packages=[ | 82 | packages=[ |
| 82 | "oletools", | 83 | "oletools", |
| 83 | "oletools.common", | 84 | "oletools.common", |
| 85 | + "oletools.common.log_helper", | ||
| 84 | 'oletools.thirdparty', | 86 | 'oletools.thirdparty', |
| 85 | 'oletools.thirdparty.xxxswf', | 87 | 'oletools.thirdparty.xxxswf', |
| 86 | 'oletools.thirdparty.prettytable', | 88 | 'oletools.thirdparty.prettytable', |