From cbb74b34be02990a10eb75b653425ea98fba5aae Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 26 Oct 2013 16:53:04 +0200 Subject: 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. --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b508d48..967a814 100644 --- a/setup.py +++ b/setup.py @@ -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', ], ) -- cgit v1.2.3