]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add pypi classifiers so we'll show up on python3-compatible lists.
authorBen Darnell <ben@bendarnell.com>
Mon, 18 Feb 2013 15:46:48 +0000 (10:46 -0500)
committerBen Darnell <ben@bendarnell.com>
Mon, 18 Feb 2013 15:46:48 +0000 (10:46 -0500)
setup.py

index 09b46f4af180509411da672b34ab991d9b8220c6..97ca6c5770cd2946fae5cadcda7f4f61fefa384d 100644 (file)
--- 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
 )