Commit b4b61695fb54492e5ade0151efc23d6bca1864a7

Authored by Philippe Lagadec
1 parent 75e413f5

updated setup.py

Showing 1 changed file with 9 additions and 3 deletions
setup.py
@@ -13,6 +13,7 @@ to install this package. @@ -13,6 +13,7 @@ to install this package.
13 # 2014-08-27 v0.06: - added doc subfolder 13 # 2014-08-27 v0.06: - added doc subfolder
14 # 2015-01-05 v0.07: - added xglob, prettytable 14 # 2015-01-05 v0.07: - added xglob, prettytable
15 # 2015-02-08 v0.08: - added DridexUrlDecoder 15 # 2015-02-08 v0.08: - added DridexUrlDecoder
  16 +# 2015-03-23 v0.09: - updated description and classifiers
16 17
17 #--- TODO --------------------------------------------------------------------- 18 #--- TODO ---------------------------------------------------------------------
18 19
@@ -34,8 +35,8 @@ import sys, os, fnmatch @@ -34,8 +35,8 @@ import sys, os, fnmatch
34 #--- METADATA ----------------------------------------------------------------- 35 #--- METADATA -----------------------------------------------------------------
35 36
36 name = "oletools" 37 name = "oletools"
37 -version = '0.08'  
38 -desc = "Python tools to analyze security characteristics of MS OLE2 files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office documents, for Malware Analysis and Incident Response." 38 +version = '0.09'
  39 +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"
39 long_desc = open('oletools/README.rst').read() 40 long_desc = open('oletools/README.rst').read()
40 author ="Philippe Lagadec" 41 author ="Philippe Lagadec"
41 author_email ="decalage at laposte dot net" 42 author_email ="decalage at laposte dot net"
@@ -43,17 +44,22 @@ url ="http://www.decalage.info/python/oletools" @@ -43,17 +44,22 @@ url ="http://www.decalage.info/python/oletools"
43 license ="BSD" 44 license ="BSD"
44 download_url ="https://bitbucket.org/decalage/oletools/downloads" 45 download_url ="https://bitbucket.org/decalage/oletools/downloads"
45 46
  47 +# see https://pypi.python.org/pypi?%3Aaction=list_classifiers
46 classifiers=[ 48 classifiers=[
47 - "Development Status :: 3 - Alpha", 49 + "Development Status :: 4 - Beta",
  50 + "Intended Audience :: Developers",
48 "Intended Audience :: Information Technology", 51 "Intended Audience :: Information Technology",
49 "Intended Audience :: Science/Research", 52 "Intended Audience :: Science/Research",
50 "Intended Audience :: System Administrators", 53 "Intended Audience :: System Administrators",
51 "License :: OSI Approved :: BSD License", 54 "License :: OSI Approved :: BSD License",
  55 + "Natural Language :: English",
52 "Operating System :: OS Independent", 56 "Operating System :: OS Independent",
53 "Programming Language :: Python", 57 "Programming Language :: Python",
54 "Programming Language :: Python :: 2", 58 "Programming Language :: Python :: 2",
  59 + "Programming Language :: Python :: 2 :: Only",
55 # "Programming Language :: Python :: 3", 60 # "Programming Language :: Python :: 3",
56 "Topic :: Security", 61 "Topic :: Security",
  62 + "Topic :: Software Development :: Libraries :: Python Modules",
57 ] 63 ]
58 64
59 #--- PACKAGES ----------------------------------------------------------------- 65 #--- PACKAGES -----------------------------------------------------------------