From 6a442933e27b8ed056bf4c8aff8c061b78fe63d4 Mon Sep 17 00:00:00 2001 From: David D Lowe Date: Tue, 22 Dec 2015 15:38:12 +0100 Subject: [PATCH] Update setup.py to mention both Python 2 and 3 This is so sites like djangopackages.com will mark this distribution as being compatible with Python 3. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 260f0ab..2f34301 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,8 @@ setup( 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', - 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', 'Topic :: Utilities'], description='Drag and drop sorting for models and inline models in Django admin.', include_package_data=True,