diff options
| author | Aymeric Augustin | 2013-10-26 16:53:04 +0200 |
|---|---|---|
| committer | Aymeric Augustin | 2013-10-26 16:53:04 +0200 |
| commit | cbb74b34be02990a10eb75b653425ea98fba5aae (patch) | |
| tree | 72e1183fb94a5d78a05a9318207362e16a2430ec /setup.py | |
| parent | 716adf0bab528fcd8177a132ae45dd665d561aea (diff) | |
| download | django-debug-toolbar-cbb74b34be02990a10eb75b653425ea98fba5aae.tar.bz2 | |
Add supported Python versions to setup.py.
The Python 3 Wall of Superpowers relies on this to determine if a
package is compatible with Python 3, and we're sufficiently popular to
show up there.
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', ], ) |
