From c186bcb3c9fede28bc0479ece27ecb1ac3b54306 Mon Sep 17 00:00:00 2001 From: James Robert Date: Thu, 5 Oct 2017 11:58:11 -0400 Subject: [PATCH] tell pypi that we support python 3 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 673018a..e683580 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,10 @@ classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', 'Framework :: Django', 'Environment :: Web Environment', 'Intended Audience :: Developers',