From 1b9bbb546a78e5f0e995104c75685ceeeca1b761 Mon Sep 17 00:00:00 2001 From: James Bennett Date: Tue, 24 Feb 2009 02:28:16 +0000 Subject: [PATCH] Add trove classifiers to setup.py git-svn-id: http://code.djangoproject.com/svn/django/trunk@9896 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/setup.py b/setup.py index bf8ac42592..9ed897c00f 100644 --- a/setup.py +++ b/setup.py @@ -82,4 +82,16 @@ setup( cmdclass = cmdclasses, data_files = data_files, scripts = ['django/bin/django-admin.py'], + classifiers = ['Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Internet :: WWW/HTTP :: WSGI', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], )