From 6bf6fbe72f4dfc200669521c9d3bfd58ce481f74 Mon Sep 17 00:00:00 2001 From: "Paul J. Davis" Date: Sat, 12 Feb 2011 11:51:17 -0500 Subject: [PATCH] Added extra WSG/HTTP classifiers for PyPI * We were missing some obvious classifiers for HTTP and WSGI --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 4f2e3ea2..83470aa1 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,10 @@ setup( 'Topic :: Internet', 'Topic :: Utilities', 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: WSGI', + 'Topic :: Internet :: WWW/HTTP :: WSGI :: Server', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], zip_safe = False, packages = find_packages(exclude=['examples', 'tests']),