From cf93ba9d20a76bd384e9475f196a0233296816af Mon Sep 17 00:00:00 2001 From: decalage2 Date: Wed, 29 Aug 2018 22:50:41 +0200 Subject: [PATCH] setup: added olefile as dependency (work in progress), added olefile as an entry point, bumped version to 0.54dev1 --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9bbbc34..a416266 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.53.1' +version = '0.54dev1' 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" long_desc = open('oletools/README.rst').read() author = "Philippe Lagadec" @@ -287,6 +287,7 @@ entry_points = { 'rtfobj=oletools.rtfobj:main', 'oleobj=oletools.oleobj:main', 'msodde=oletools.msodde:main', + 'olefile=olefile.olefile:main', ], } @@ -320,7 +321,10 @@ def main(): entry_points=entry_points, test_suite="tests", # scripts=scripts, - install_requires=["pyparsing"], + install_requires=[ + "pyparsing>=2.2.0", + "olefile>=0.45", + ], ) -- libgit2 0.21.4