Commit cf93ba9d20a76bd384e9475f196a0233296816af
1 parent
6e6c66fe
setup: added olefile as dependency (work in progress), added olefile as an entry…
… point, bumped version to 0.54dev1
Showing
1 changed file
with
6 additions
and
2 deletions
setup.py
| ... | ... | @@ -43,7 +43,7 @@ import os, fnmatch |
| 43 | 43 | #--- METADATA ----------------------------------------------------------------- |
| 44 | 44 | |
| 45 | 45 | name = "oletools" |
| 46 | -version = '0.53.1' | |
| 46 | +version = '0.54dev1' | |
| 47 | 47 | 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" |
| 48 | 48 | long_desc = open('oletools/README.rst').read() |
| 49 | 49 | author = "Philippe Lagadec" |
| ... | ... | @@ -287,6 +287,7 @@ entry_points = { |
| 287 | 287 | 'rtfobj=oletools.rtfobj:main', |
| 288 | 288 | 'oleobj=oletools.oleobj:main', |
| 289 | 289 | 'msodde=oletools.msodde:main', |
| 290 | + 'olefile=olefile.olefile:main', | |
| 290 | 291 | ], |
| 291 | 292 | } |
| 292 | 293 | |
| ... | ... | @@ -320,7 +321,10 @@ def main(): |
| 320 | 321 | entry_points=entry_points, |
| 321 | 322 | test_suite="tests", |
| 322 | 323 | # scripts=scripts, |
| 323 | - install_requires=["pyparsing"], | |
| 324 | + install_requires=[ | |
| 325 | + "pyparsing>=2.2.0", | |
| 326 | + "olefile>=0.45", | |
| 327 | + ], | |
| 324 | 328 | ) |
| 325 | 329 | |
| 326 | 330 | ... | ... |