]> git.phdru.name Git - sqlconvert.git/blobdiff - setup.py
Build(setup.py): Reorder `install_requires`
[sqlconvert.git] / setup.py
index a310a2c459063f446cd68edd019c84f08aac6ac0..53cb1e2d6d2a0262f02141d02c07b09ae5162acc 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -2,36 +2,29 @@
 
 from imp import load_source
 from os.path import abspath, dirname, join
-
-try:
-    from setuptools import setup
-    is_setuptools = True
-except ImportError:
-    from distutils.core import setup
-    is_setuptools = False
+from setuptools import setup
 
 versionpath = join(abspath(dirname(__file__)), 'sqlconvert', '__version__.py')
 sqlconvert_version = load_source('sqlconvert_version', versionpath)
 
-kw = {}
-if is_setuptools:
-    kw['install_requires'] = [
-        'sqlparse',
-        '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"',
-    ]
-
-    kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
-
 setup(name='sqlconvert',
       version=sqlconvert_version.__version__,
       description='Broytman sqlconvert',
       long_description=open('README.rst', 'rU').read(),
+      long_description_content_type="text/x-rst",
       author='Oleg Broytman',
       author_email='phd@phdru.name',
       url='http://phdru.name/Software/Python/sqlconvert/',
+      project_urls={
+          'Homepage': 'http://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/',
+          'Github repo': 'https://github.com/phdru/sqlconvert',
+          'Issue tracker': 'https://github.com/phdru/sqlconvert/issues',
+      },
       license='GPL',
       keywords=['sql', 'mysql', 'postgresql', 'sqlite', 'insert'],
       platforms='Any',
@@ -50,5 +43,12 @@ setup(name='sqlconvert',
       ],
       packages=['sqlconvert'],
       scripts=['scripts/mysql2sql'],
-      **kw
+      python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
+      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',
+          'sqlparse',
+      ],
       )