From 78612c2c950a55007675da3c7df0c10476417692 Mon Sep 17 00:00:00 2001 From: Holly Becker Date: Fri, 4 Nov 2016 15:00:17 -0700 Subject: [PATCH] Add supported language version classifiers --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.py b/setup.py index a5d6584..1cab46b 100644 --- a/setup.py +++ b/setup.py @@ -37,4 +37,13 @@ install_requires = install_requires, tests_require = tests_require, test_suite = "tests.get_tests", + classifiers = [ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: Implementation :: PyPy', + ], )