From 20e24dbbd7988d03bacb87864117109c1abc57bd Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Thu, 5 Nov 2015 12:54:16 -0800 Subject: [PATCH] setup.py: List supported Python versions. Based on the versions that Travis tests. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 1cdcf61..7ea67c7 100644 --- a/setup.py +++ b/setup.py @@ -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", + ], )