summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2009-02-24 02:28:16 +0000
committerJames Bennett <ubernostrum@gmail.com>2009-02-24 02:28:16 +0000
commit1b9bbb546a78e5f0e995104c75685ceeeca1b761 (patch)
treec1b04b362ffb54ae43ab145fa50f04a8a6fa61a0 /setup.py
parent17bb750b080b6064b3240b767dd60e40cf69c591 (diff)
Add trove classifiers to setup.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9896 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py12
1 files changed, 12 insertions, 0 deletions
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',
+ ],
)