From bf39da891857771cdb51a2ff141b1200950084ad Mon Sep 17 00:00:00 2001 From: Donald Stufft <donald@stufft.io> Date: Sun, 14 Apr 2013 01:17:06 -0400 Subject: [PATCH] Add clasifiers for the Python implementations and versions --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.py b/setup.py index e4c8e55d..89418011 100644 --- a/setup.py +++ b/setup.py @@ -58,4 +58,15 @@ setup( zip_safe=False, cmdclass={"test": PyTest}, + + classifiers=[ + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "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", + ] ) -- GitLab