X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=blobdiff_plain;f=setup.py;h=911b3ac88faa75ffd6223081c11cc6105f6277e7;hp=6d0632c551ed87b76ce3ffc1967379c98e9ebded;hb=HEAD;hpb=96ec2fdc1e551d98d78ec9bd3aa8ef997063dc4b diff --git a/setup.py b/setup.py index 6d0632c..3d74634 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ if sys.version_info[:2] == (2, 7): execfile(versionpath, sqlconvert_version) # noqa: F821 'execfile' Py3 elif sys.version_info >= (3, 4): - exec(open(versionpath, 'rU').read(), sqlconvert_version) + exec(open(versionpath, 'r').read(), sqlconvert_version) else: raise ImportError("sqlconvert requires Python 2.7 or 3.4+") @@ -20,7 +20,7 @@ setup( name='sqlconvert', version=sqlconvert_version['__version__'], description='Broytman sqlconvert', - long_description=open('README.rst', 'rU').read(), + long_description=open('README.rst', 'r').read(), long_description_content_type="text/x-rst", author='Oleg Broytman', author_email='phd@phdru.name', @@ -52,6 +52,10 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], packages=['sqlconvert'], scripts=['scripts/mysql2sql'], @@ -59,8 +63,7 @@ setup( install_requires=[ 'SQLObject>=2.2.1; python_version=="2.7"', 'SQLObject>=3.0.0; python_version>="3.4"', - 'm_lib.defenc>=1.0', - 'm_lib>=3.1', + 'm_lib.full>=1.0', 'sqlparse', ], )