]> git.phdru.name Git - sqlconvert.git/blobdiff - setup.py
Tests(tox.ini): Don't whitelist flake8
[sqlconvert.git] / setup.py
index d43442444c1c67f87da474af9e0931cf34dac5ec..a310a2c459063f446cd68edd019c84f08aac6ac0 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,5 @@
 #!/usr/bin/env python
 
-import sys
 from imp import load_source
 from os.path import abspath, dirname, join
 
@@ -12,30 +11,22 @@ except ImportError:
     is_setuptools = False
 
 versionpath = join(abspath(dirname(__file__)), 'sqlconvert', '__version__.py')
-load_source('sqlconvert_version', versionpath)
-# Ignore: E402 module level import not at top of file
-from sqlconvert_version import __version__  # noqa
+sqlconvert_version = load_source('sqlconvert_version', versionpath)
 
 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',
-        'm_lib.defenc>=1.0', 'm_lib>=3.1',
+        'm_lib>=3.1',
+        'm_lib.defenc>=1.0',
+        'SQLObject>=2.2.1; python_version=="2.7"',
+        'SQLObject>=3.0.0; python_version>="3.4"',
     ]
-    if PY2:
-        kw['install_requires'].append('SQLObject>=2.2.1')
-    else:
-        kw['install_requires'].append('SQLObject>=3.0.0')
+
+    kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
 
 setup(name='sqlconvert',
-      version=__version__,
+      version=sqlconvert_version.__version__,
       description='Broytman sqlconvert',
       long_description=open('README.rst', 'rU').read(),
       author='Oleg Broytman',