diff --git a/setup.py b/setup.py index 08ed054..bb247d8 100755 --- a/setup.py +++ b/setup.py @@ -11,13 +11,14 @@ to install this package. #--- CHANGELOG ---------------------------------------------------------------- -# 2014-08-27 v0.06: - added doc subfolder -# 2015-01-05 v0.07: - added xglob, prettytable -# 2015-02-08 v0.08: - added DridexUrlDecoder -# 2015-03-23 v0.09: - updated description and classifiers, added shebang line -# 2015-06-16 v0.10: - added pyparsing -# 2016-02-08 v0.42: - added colorclass, tablestream -# 2016-07-19 v0.48: - create CLI scripts using entry points (by 2*yo) +# 2014-08-27 v0.06 PL: - added doc subfolder +# 2015-01-05 v0.07 PL: - added xglob, prettytable +# 2015-02-08 v0.08 PL: - added DridexUrlDecoder +# 2015-03-23 v0.09 PL: - updated description and classifiers, added shebang line +# 2015-06-16 v0.10 PL: - added pyparsing +# 2016-02-08 v0.42 PL: - added colorclass, tablestream +# 2016-07-19 v0.50 PL: - create CLI scripts using entry points (by 2*yo) +# 2016-07-29 PL: - use setuptools if available #--- TODO --------------------------------------------------------------------- @@ -38,7 +39,7 @@ import sys, os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.48' +version = '0.50a' 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" @@ -271,6 +272,8 @@ entry_points = { ], } +# scripts=['oletools/olevba.py', 'oletools/mraptor.py'] + # === MAIN ===================================================================== @@ -306,6 +309,7 @@ def main(): download_url=download_url, # data_files=data_files, entry_points=entry_points, + # scripts=scripts, )