From: Oleg Broytman Date: Thu, 28 Jul 2016 22:50:49 +0000 (+0300) Subject: Declare Python 3 compatibility X-Git-Tag: 0.0.1~51 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=585e9f1e375417b4a5928f184c6dc2936d6ed6ee Declare Python 3 compatibility --- diff --git a/setup.py b/setup.py index 6ec1404..45712b2 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,8 @@ setup(name='mysql2sql', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', ], packages=['mysql2sql'], package_data={'mysql2sql': []},