Commit cbb33f45271b602f7b606a7294a233f3c719d81d

Authored by decalage2
1 parent e07b6b46

setup.py: updated comments and version

Showing 1 changed file with 12 additions and 8 deletions
setup.py
@@ -11,13 +11,14 @@ to install this package. @@ -11,13 +11,14 @@ to install this package.
11 11
12 #--- CHANGELOG ---------------------------------------------------------------- 12 #--- CHANGELOG ----------------------------------------------------------------
13 13
14 -# 2014-08-27 v0.06: - added doc subfolder  
15 -# 2015-01-05 v0.07: - added xglob, prettytable  
16 -# 2015-02-08 v0.08: - added DridexUrlDecoder  
17 -# 2015-03-23 v0.09: - updated description and classifiers, added shebang line  
18 -# 2015-06-16 v0.10: - added pyparsing  
19 -# 2016-02-08 v0.42: - added colorclass, tablestream  
20 -# 2016-07-19 v0.48: - create CLI scripts using entry points (by 2*yo) 14 +# 2014-08-27 v0.06 PL: - added doc subfolder
  15 +# 2015-01-05 v0.07 PL: - added xglob, prettytable
  16 +# 2015-02-08 v0.08 PL: - added DridexUrlDecoder
  17 +# 2015-03-23 v0.09 PL: - updated description and classifiers, added shebang line
  18 +# 2015-06-16 v0.10 PL: - added pyparsing
  19 +# 2016-02-08 v0.42 PL: - added colorclass, tablestream
  20 +# 2016-07-19 v0.50 PL: - create CLI scripts using entry points (by 2*yo)
  21 +# 2016-07-29 PL: - use setuptools if available
21 22
22 #--- TODO --------------------------------------------------------------------- 23 #--- TODO ---------------------------------------------------------------------
23 24
@@ -38,7 +39,7 @@ import sys, os, fnmatch @@ -38,7 +39,7 @@ import sys, os, fnmatch
38 #--- METADATA ----------------------------------------------------------------- 39 #--- METADATA -----------------------------------------------------------------
39 40
40 name = "oletools" 41 name = "oletools"
41 -version = '0.48' 42 +version = '0.50a'
42 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" 43 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"
43 long_desc = open('oletools/README.rst').read() 44 long_desc = open('oletools/README.rst').read()
44 author = "Philippe Lagadec" 45 author = "Philippe Lagadec"
@@ -271,6 +272,8 @@ entry_points = { @@ -271,6 +272,8 @@ entry_points = {
271 ], 272 ],
272 } 273 }
273 274
  275 +# scripts=['oletools/olevba.py', 'oletools/mraptor.py']
  276 +
274 277
275 # === MAIN ===================================================================== 278 # === MAIN =====================================================================
276 279
@@ -306,6 +309,7 @@ def main(): @@ -306,6 +309,7 @@ def main():
306 download_url=download_url, 309 download_url=download_url,
307 # data_files=data_files, 310 # data_files=data_files,
308 entry_points=entry_points, 311 entry_points=entry_points,
  312 + # scripts=scripts,
309 ) 313 )
310 314
311 315