From fbf929c510c77e75fa902c77ed2632e8d33026eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Fri, 4 Sep 2015 08:21:39 +0300 Subject: [PATCH] Added supported Python versions --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 546e065..216ad21 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,12 @@ def read(fname): 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', ], packages=find_packages(exclude=['tests']), install_requires=['django'],