summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2009-08-03 21:18:39 +0000
committerJames Bennett <ubernostrum@gmail.com>2009-08-03 21:18:39 +0000
commit542904ee6d54de3576ab6e072ce6df223914d973 (patch)
tree81586e70a6b8d0cf999e38f78205fe5bf2c88b91
parent7af2b34a5caa185bd0bdc0ce54a1f03fb9e8cf3f (diff)
[1.0.X] Add trove classifiers to 1.0 series setup.py. Not sure why I didn't do this before.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11382 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--setup.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index f6e6528694..da565be2b5 100644
--- a/setup.py
+++ b/setup.py
@@ -81,4 +81,17 @@ setup(
cmdclass = cmdclasses,
data_files = data_files,
scripts = ['django/bin/django-admin.py'],
+ classifiers = ['Development Status :: 5 - Production/Stable',
+ '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 :: Application Frameworks',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ ],
)