Commit b4b61695fb54492e5ade0151efc23d6bca1864a7
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 | 13 | # 2014-08-27 v0.06: - added doc subfolder |
| 14 | 14 | # 2015-01-05 v0.07: - added xglob, prettytable |
| 15 | 15 | # 2015-02-08 v0.08: - added DridexUrlDecoder |
| 16 | +# 2015-03-23 v0.09: - updated description and classifiers | |
| 16 | 17 | |
| 17 | 18 | #--- TODO --------------------------------------------------------------------- |
| 18 | 19 | |
| ... | ... | @@ -34,8 +35,8 @@ import sys, os, fnmatch |
| 34 | 35 | #--- METADATA ----------------------------------------------------------------- |
| 35 | 36 | |
| 36 | 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 | 40 | long_desc = open('oletools/README.rst').read() |
| 40 | 41 | author ="Philippe Lagadec" |
| 41 | 42 | author_email ="decalage at laposte dot net" |
| ... | ... | @@ -43,17 +44,22 @@ url ="http://www.decalage.info/python/oletools" |
| 43 | 44 | license ="BSD" |
| 44 | 45 | download_url ="https://bitbucket.org/decalage/oletools/downloads" |
| 45 | 46 | |
| 47 | +# see https://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 46 | 48 | classifiers=[ |
| 47 | - "Development Status :: 3 - Alpha", | |
| 49 | + "Development Status :: 4 - Beta", | |
| 50 | + "Intended Audience :: Developers", | |
| 48 | 51 | "Intended Audience :: Information Technology", |
| 49 | 52 | "Intended Audience :: Science/Research", |
| 50 | 53 | "Intended Audience :: System Administrators", |
| 51 | 54 | "License :: OSI Approved :: BSD License", |
| 55 | + "Natural Language :: English", | |
| 52 | 56 | "Operating System :: OS Independent", |
| 53 | 57 | "Programming Language :: Python", |
| 54 | 58 | "Programming Language :: Python :: 2", |
| 59 | + "Programming Language :: Python :: 2 :: Only", | |
| 55 | 60 | # "Programming Language :: Python :: 3", |
| 56 | 61 | "Topic :: Security", |
| 62 | + "Topic :: Software Development :: Libraries :: Python Modules", | |
| 57 | 63 | ] |
| 58 | 64 | |
| 59 | 65 | #--- PACKAGES ----------------------------------------------------------------- | ... | ... |