X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=45712b2505848e1648d3d654955b4b5fad08b1a7;hb=031cc0d6a41717d4c5d7c4659290e05810202eb9;hp=277a9737f3bf2680fffaeca545cdd171c399fcac;hpb=b4bfb63ecab0ee594247c576a3414c4cdd133058;p=sqlconvert.git diff --git a/setup.py b/setup.py index 277a973..45712b2 100755 --- 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': []},