From 115b7c03eee27ff4f7a3ce2e8b62d0a29063e988 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Thu, 19 Dec 2013 17:03:40 -0800 Subject: [PATCH] add some classifiers --- setup.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a7d2d0b..d51d1a4 100755 --- a/setup.py +++ b/setup.py @@ -17,5 +17,18 @@ setuptools.setup(name='warcprox', tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636 test_suite='warcprox.tests', scripts=['bin/dump-anydbm', 'bin/warcprox'], - zip_safe=False) + zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Topic :: Internet :: Proxy Servers', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development :: Libraries :: Python Modules' + 'Topic :: System :: Archiving', + ])