]> git.phdru.name Git - sqlconvert.git/blobdiff - setup.py
Declare Python 3 compatibility
[sqlconvert.git] / setup.py
index 277a9737f3bf2680fffaeca545cdd171c399fcac..45712b2505848e1648d3d654955b4b5fad08b1a7 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -21,6 +21,7 @@ if is_setuptools:
 
 versionpath = join(abspath(dirname(__file__)), 'mysql2sql', '__version__.py')
 load_source('mysql2sql_version', versionpath)
+# Ignore: E402 module level import not at top of file
 from mysql2sql_version import __version__  # noqa
 
 setup(name='mysql2sql',
@@ -36,14 +37,14 @@ setup(name='mysql2sql',
       classifiers=[
           'Development Status :: 1 - Planning',
           'Environment :: Console',
-          'Environment :: Web Environment',
-          'Intended Audience :: End Users/Desktop',
+          'Intended Audience :: Developers',
           'License :: OSI Approved :: GNU General Public License (GPL)',
           'Operating System :: OS Independent',
           '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': []},