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.
This commit is contained in:
Stein Magnus Jodal 2014-04-03 21:14:47 +02:00
parent 2e639a11c0
commit 26b9da52aa
1 changed files with 5 additions and 0 deletions

View File

@ -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',