From 60a7708643b31776a56377815c51239261481529 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 9 Apr 2018 01:30:01 +0300 Subject: [PATCH] Style(setup.py): Reindent parameters --- setup.py | 91 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 46 insertions(+), 45 deletions(-) diff --git a/setup.py b/setup.py index 53cb1e2..6a7dc8f 100755 --- a/setup.py +++ b/setup.py @@ -7,48 +7,49 @@ from setuptools import setup versionpath = join(abspath(dirname(__file__)), 'sqlconvert', '__version__.py') sqlconvert_version = load_source('sqlconvert_version', versionpath) -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', - classifiers=[ - 'Development Status :: 3 - Alpha', - 'Environment :: Console', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - ], - packages=['sqlconvert'], - scripts=['scripts/mysql2sql'], - 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', - ], - ) +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', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + ], + packages=['sqlconvert'], + scripts=['scripts/mysql2sql'], + 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', + ], +) -- 2.39.2