Commit e77489625ecf40886346a2eafd4a7c97c7628c27

Authored by decalage2
1 parent f6d7601f

setup, requirements: fixed dependency to msoffcrypto-tool

Showing 2 changed files with 3 additions and 2 deletions
requirements.txt
1 1 pyparsing>=2.2.0
2 2 olefile>=0.45
3 3 colorclass
  4 +msoffcrypto-tool
... ...
setup.py
... ... @@ -48,7 +48,7 @@ import os, fnmatch
48 48 #--- METADATA -----------------------------------------------------------------
49 49  
50 50 name = "oletools"
51   -version = '0.54dev13'
  51 +version = '0.54'
52 52 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"
53 53 long_desc = open('oletools/README.rst').read()
54 54 author = "Philippe Lagadec"
... ... @@ -321,7 +321,7 @@ def main():
321 321 extras_require = {
322 322 # msoffcrypto-tools by nolze can be used to decrypt some office files
323 323 # TODO: make it a required dependency?
324   - 'decrypt': ['msoffcrypto']
  324 + 'decrypt': ['msoffcrypto-tool']
325 325 }
326 326 )
327 327  
... ...