Commit d66f64af3d681fda00effa5c54f9d3bab73043c3

Authored by Philippe Lagadec
1 parent eb01931a

updated setup and license for v0.42

oletools/LICENSE.txt
@@ -3,7 +3,7 @@ LICENSE for the python-oletools package: @@ -3,7 +3,7 @@ LICENSE for the python-oletools package:
3 This license applies to the python-oletools package, apart from the thirdparty 3 This license applies to the python-oletools package, apart from the thirdparty
4 folder which contains third-party files published with their own license. 4 folder which contains third-party files published with their own license.
5 5
6 -The python-oletools package is copyright (c) 2012-2015 Philippe Lagadec (http://www.decalage.info) 6 +The python-oletools package is copyright (c) 2012-2016 Philippe Lagadec (http://www.decalage.info)
7 7
8 All rights reserved. 8 All rights reserved.
9 9
setup.py
@@ -16,6 +16,7 @@ to install this package. @@ -16,6 +16,7 @@ to install this package.
16 # 2015-02-08 v0.08: - added DridexUrlDecoder 16 # 2015-02-08 v0.08: - added DridexUrlDecoder
17 # 2015-03-23 v0.09: - updated description and classifiers, added shebang line 17 # 2015-03-23 v0.09: - updated description and classifiers, added shebang line
18 # 2015-06-16 v0.10: - added pyparsing 18 # 2015-06-16 v0.10: - added pyparsing
  19 +# 2016-02-08 v0.42: - added colorclass, tablestream
19 20
20 #--- TODO --------------------------------------------------------------------- 21 #--- TODO ---------------------------------------------------------------------
21 22
@@ -76,6 +77,8 @@ packages=[ @@ -76,6 +77,8 @@ packages=[
76 'oletools.thirdparty.xglob', 77 'oletools.thirdparty.xglob',
77 'oletools.thirdparty.DridexUrlDecoder', 78 'oletools.thirdparty.DridexUrlDecoder',
78 'oletools.thirdparty.pyparsing', 79 'oletools.thirdparty.pyparsing',
  80 + 'oletools.thirdparty.colorclass',
  81 + 'oletools.thirdparty.tablestream',
79 ] 82 ]
80 ##setupdir = '.' 83 ##setupdir = '.'
81 ##package_dir={'': setupdir} 84 ##package_dir={'': setupdir}
@@ -173,6 +176,12 @@ package_data={ @@ -173,6 +176,12 @@ package_data={
173 'oletools.thirdparty.pyparsing': [ 176 'oletools.thirdparty.pyparsing': [
174 'LICENSE', 'README', 177 'LICENSE', 'README',
175 ], 178 ],
  179 + 'oletools.thirdparty.colorclass': [
  180 + 'LICENSE.txt',
  181 + ],
  182 + # 'oletools.thirdparty.tablestream': [
  183 + # 'LICENSE', 'README',
  184 + # ],
176 } 185 }
177 186
178 187