setup.py: List supported Python versions.

Based on the versions that Travis tests.
This commit is contained in:
Andrew Ekstedt 2015-11-05 12:54:16 -08:00
parent cf5ea6a434
commit 20e24dbbd7
1 changed files with 5 additions and 0 deletions

View File

@ -22,4 +22,9 @@ setup(
'pokedex = pokedex.main:setuptools_entry',
],
},
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)