X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=911b3ac88faa75ffd6223081c11cc6105f6277e7;hb=ef4ecd3c4073a35ec0d0233ba7c03e66156a3bed;hp=6a7dc8fa462ef81735425ec5d2f400092c281a97;hpb=60a7708643b31776a56377815c51239261481529;p=sqlconvert.git diff --git a/setup.py b/setup.py index 6a7dc8f..911b3ac 100755 --- a/setup.py +++ b/setup.py @@ -1,28 +1,37 @@ #!/usr/bin/env python -from imp import load_source from os.path import abspath, dirname, join from setuptools import setup +import sys versionpath = join(abspath(dirname(__file__)), 'sqlconvert', '__version__.py') -sqlconvert_version = load_source('sqlconvert_version', versionpath) +sqlconvert_version = {} + +if sys.version_info[:2] == (2, 7): + execfile(versionpath, sqlconvert_version) # noqa: F821 'execfile' Py3 + +elif sys.version_info >= (3, 4): + exec(open(versionpath, 'r').read(), sqlconvert_version) + +else: + raise ImportError("sqlconvert requires Python 2.7 or 3.4+") setup( name='sqlconvert', - version=sqlconvert_version.__version__, + 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', - url='http://phdru.name/Software/Python/sqlconvert/', + url='https://phdru.name/Software/Python/sqlconvert/', project_urls={ - 'Homepage': 'http://phdru.name/Software/Python/sqlconvert/', + 'Homepage': 'https://phdru.name/Software/Python/sqlconvert/', 'Documentation': - 'http://phdru.name/Software/Python/sqlconvert/docs/', - 'Download': 'https://pypi.python.org/pypi/sqlconvert/%s' - % sqlconvert_version.__version__, - 'Git repo': 'http://git.phdru.name/sqlconvert.git/', + 'https://phdru.name/Software/Python/sqlconvert/docs/', + 'Download': 'https://pypi.org/project/sqlconvert/%s/' + % sqlconvert_version['__version__'], + 'Git repo': 'https://git.phdru.name/sqlconvert.git/', 'Github repo': 'https://github.com/phdru/sqlconvert', 'Issue tracker': 'https://github.com/phdru/sqlconvert/issues', }, @@ -41,6 +50,11 @@ setup( 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', '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', ], packages=['sqlconvert'], scripts=['scripts/mysql2sql'],