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 3 This license applies to the python-oletools package, apart from the thirdparty
4 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 8 All rights reserved.
9 9  
... ...
setup.py
... ... @@ -16,6 +16,7 @@ to install this package.
16 16 # 2015-02-08 v0.08: - added DridexUrlDecoder
17 17 # 2015-03-23 v0.09: - updated description and classifiers, added shebang line
18 18 # 2015-06-16 v0.10: - added pyparsing
  19 +# 2016-02-08 v0.42: - added colorclass, tablestream
19 20  
20 21 #--- TODO ---------------------------------------------------------------------
21 22  
... ... @@ -76,6 +77,8 @@ packages=[
76 77 'oletools.thirdparty.xglob',
77 78 'oletools.thirdparty.DridexUrlDecoder',
78 79 'oletools.thirdparty.pyparsing',
  80 + 'oletools.thirdparty.colorclass',
  81 + 'oletools.thirdparty.tablestream',
79 82 ]
80 83 ##setupdir = '.'
81 84 ##package_dir={'': setupdir}
... ... @@ -173,6 +176,12 @@ package_data={
173 176 'oletools.thirdparty.pyparsing': [
174 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  
... ...