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