summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@divmod.com>2011-12-19 13:32:29 -0500
committerJean-Paul Calderone <exarkun@divmod.com>2011-12-19 13:32:29 -0500
commitd59d3bc2a2ec62561359e6aa0ff25b8f03f96dd7 (patch)
tree353733b41a67da62c6e975d7f6425b0395964f70
parent22d915f1197342ce2988cdd9f5e171bc37aa120b (diff)
downloadpyopenssl-d59d3bc2a2ec62561359e6aa0ff25b8f03f96dd7.tar.gz
Add a bunch of classifiers. Classifiers are fun. Everyone loves classifiers.
-rwxr-xr-xsetup.py22
1 files changed, 20 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 2aa649e..8441274 100755
--- a/setup.py
+++ b/setup.py
@@ -218,5 +218,23 @@ High-level wrapper around a subset of the OpenSSL library, includes
sockets
* Callbacks written in Python
* Extensive error-handling mechanism, mirroring OpenSSL's error codes
-... and much more ;)"""
- )
+... and much more ;)""",
+ classifiers = [
+ 'Development Status :: 6 - Mature',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Operating System :: MacOS :: MacOS X',
+ 'Operating System :: Microsoft :: Windows',
+ 'Operating System :: POSIX',
+ 'Programming Language :: C',
+ 'Programming Language :: Python :: 2.4',
+ 'Programming Language :: Python :: 2.5',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3.2',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
+ 'Topic :: Security :: Cryptography',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: System :: Networking',
+ ])