summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2011-03-28 02:14:19 +0000
committerAdrian Holovaty <adrian@holovaty.com>2011-03-28 02:14:19 +0000
commit3d5a8f758a6af8bdbcfad94dc7534cd3c1385d46 (patch)
treec32971267e5aade0310f2ba345ef321101bd7b92 /setup.py
parent5d6ee6cb18675000a97331e60f04ff1a394dac13 (diff)
Changed setup.py classifiers to use a better indentation style
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15929 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py33
1 files changed, 17 insertions, 16 deletions
diff --git a/setup.py b/setup.py
index 2b108e884e..12c9059255 100644
--- a/setup.py
+++ b/setup.py
@@ -82,20 +82,21 @@ 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',
- 'Programming Language :: Python :: 2.5',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- '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',
- ],
+ 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',
+ 'Programming Language :: Python :: 2.5',
+ 'Programming Language :: Python :: 2.6',
+ 'Programming Language :: Python :: 2.7',
+ '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',
+ ],
)