From 26b9da52aaf3db17240f47f7d4b9166f11538e93 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Thu, 3 Apr 2014 21:14:47 +0200 Subject: [PATCH] setup: Add classifiers for Python version support These are used by services like for example caniusepython3.com and requires.io to check if all dependencies of a project supports Python 3. I've run the test suite manually on Python 3.3 and 3.4, and added 3.3 to the Travis CI build. 3.4 should be added to the Travis CI build when Travis starts supporting 3.4 in the near future. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index f5f201d..04bd0e7 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,11 @@ setup( "Topic :: Software Development :: Libraries :: Python Modules", "Framework :: Django", "Environment :: Web Environment", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", ], keywords='bootstrap,django', author='tzangms',