diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 | 
1 files changed, 7 insertions, 2 deletions
| @@ -5,7 +5,6 @@ setup(      version='0.9.4',      description='A configurable set of panels that display various debug information about the current request/response.',      long_description=open('README.rst').read(), -    # Get more strings from http://www.python.org/pypi?:action=list_classifiers      author='Rob Hudson',      author_email='rob@cogit8.org',      url='https://github.com/django-debug-toolbar/django-debug-toolbar', @@ -18,7 +17,7 @@ setup(      ],      test_suite='runtests.runtests',      include_package_data=True, -    zip_safe=False,  # because we're including media that Django needs +    zip_safe=False,                 # because we're including static files      classifiers=[          'Development Status :: 4 - Beta',          'Environment :: Web Environment', @@ -27,6 +26,12 @@ setup(          'License :: OSI Approved :: BSD License',          'Operating System :: OS Independent',          'Programming Language :: Python', +        'Programming Language :: Python :: 2', +        'Programming Language :: Python :: 2.6', +        'Programming Language :: Python :: 2.7', +        'Programming Language :: Python :: 3', +        'Programming Language :: Python :: 3.2', +        'Programming Language :: Python :: 3.3',          'Topic :: Software Development :: Libraries :: Python Modules',      ],  ) | 
