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
This commit is contained in:
Adrian Holovaty 2011-03-28 02:14:19 +00:00
parent 5d6ee6cb18
commit 3d5a8f758a
1 changed files with 17 additions and 16 deletions

View File

@ -82,20 +82,21 @@ setup(
cmdclass = cmdclasses, cmdclass = cmdclasses,
data_files = data_files, data_files = data_files,
scripts = ['django/bin/django-admin.py'], scripts = ['django/bin/django-admin.py'],
classifiers = ['Development Status :: 5 - Production/Stable', classifiers = [
'Environment :: Web Environment', 'Development Status :: 5 - Production/Stable',
'Framework :: Django', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Framework :: Django',
'License :: OSI Approved :: BSD License', 'Intended Audience :: Developers',
'Operating System :: OS Independent', 'License :: OSI Approved :: BSD License',
'Programming Language :: Python', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP', 'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Application Frameworks',
], 'Topic :: Software Development :: Libraries :: Python Modules',
],
) )