From: Ben Darnell Date: Mon, 18 Feb 2013 15:46:48 +0000 (-0500) Subject: Add pypi classifiers so we'll show up on python3-compatible lists. X-Git-Tag: v3.0.0~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff2e119a488975f53d4052dc9ac662d95c581da0;p=thirdparty%2Ftornado.git Add pypi classifiers so we'll show up on python3-compatible lists. --- diff --git a/setup.py b/setup.py index 09b46f4af..97ca6c577 100644 --- a/setup.py +++ b/setup.py @@ -53,5 +53,16 @@ distutils.core.setup( download_url="http://github.com/downloads/facebook/tornado/tornado-%s.tar.gz" % version, license="http://www.apache.org/licenses/LICENSE-2.0", description="Tornado is an open source version of the scalable, non-blocking web server and and tools that power FriendFeed", + classifiers=[ + 'License :: OSI Approved :: Apache Software License', + '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', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + ], **kwargs )