X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=d36dc42599a5852a20f3fe20dcd53913c2dd0dcb;hb=d345973282b7d3ffc5fe91896751a7c8a4172978;hp=7880321fd8ee8860f15a26d6095089e2acb88b18;hpb=19480e52efebff84d26b33f718ffc7df71f6f97f;p=sqlconvert.git diff --git a/setup.py b/setup.py index 7880321..d36dc42 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ #!/usr/bin/env python +import sys from imp import load_source from os.path import abspath, dirname, join @@ -17,11 +18,21 @@ from sqlconvert_version import __version__ # noqa kw = {} if is_setuptools: + if (sys.version_info[:2] == (2, 7)): + PY2 = True + elif (sys.version_info[0] == 3) and (sys.version_info[:2] >= (3, 4)): + PY2 = False + else: + raise ImportError("sqlconvert requires Python 2.7 or 3.4+") + kw['install_requires'] = [ - 'sqlparse', 'SQLObject>=2.2.1', + 'sqlparse', 'm_lib.defenc>=1.0', 'm_lib>=3.1', - 'ppu' ] + if PY2: + kw['install_requires'].append('SQLObject>=2.2.1') + else: + kw['install_requires'].append('SQLObject>=3.0.0') setup(name='sqlconvert', version=__version__,