X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=fe59c28d003d489ff9d4990e26cfd5c5f504fbc0;hb=c6139c41bc7fc4c4f91aa1e7e1fc73056d6225e3;hp=1d553f9d47f6912ea7acd334a0b920c4e9d54035;hpb=e33ac64caf9f2f765516c3fbfd05f62106891e49;p=sqlconvert.git diff --git a/setup.py b/setup.py index 1d553f9..fe59c28 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', @@ -42,10 +43,11 @@ 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': []}, scripts=[], + package_data={}, requires=[], **kw)