From e77489625ecf40886346a2eafd4a7c97c7628c27 Mon Sep 17 00:00:00 2001 From: decalage2 Date: Thu, 4 Apr 2019 17:50:25 +0200 Subject: [PATCH] setup, requirements: fixed dependency to msoffcrypto-tool --- requirements.txt | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1f96201..c743906 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ pyparsing>=2.2.0 olefile>=0.45 colorclass +msoffcrypto-tool diff --git a/setup.py b/setup.py index e127acf..cb9c873 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.54dev13' +version = '0.54' 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" @@ -321,7 +321,7 @@ def main(): extras_require = { # msoffcrypto-tools by nolze can be used to decrypt some office files # TODO: make it a required dependency? - 'decrypt': ['msoffcrypto'] + 'decrypt': ['msoffcrypto-tool'] } ) -- libgit2 0.21.4