From bcf1dbf0bf1781553877c4e806bab85dde96673e Mon Sep 17 00:00:00 2001 From: David D Lowe Date: Wed, 30 May 2018 19:12:25 +0100 Subject: [PATCH] Indicate Python 3 support in metadata (#176) --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5d8d7e5..0997794 100644 --- a/setup.py +++ b/setup.py @@ -13,5 +13,14 @@ setup( 'django-jsonfield>=1.0.0', 'python-dateutil==2.6.0' ], - zip_safe=False + zip_safe=False, + classifiers=[ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'License :: OSI Approved :: MIT License', + ], )