X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=blobdiff_plain;f=setup.py;h=b94b18a98cd6345364d092e37abace26e82eb05b;hp=5124f03fd5bc440b3368c46843de04288edd2728;hb=60812e1b7c7a2d993374bfd0909f7f4cd00e8f69;hpb=979d3300ae140d6a07c662c899b00a5de84f8b38 diff --git a/setup.py b/setup.py index 5124f03..b94b18a 100755 --- a/setup.py +++ b/setup.py @@ -2,52 +2,54 @@ from imp import load_source from os.path import abspath, dirname, join +from setuptools import setup -try: - from ez_setup import use_setuptools - use_setuptools() -except ImportError: - pass -try: - from setuptools import setup - is_setuptools = True -except ImportError: - from distutils.core import setup - is_setuptools = False +versionpath = join(abspath(dirname(__file__)), 'sqlconvert', '__version__.py') +sqlconvert_version = load_source('sqlconvert_version', versionpath) -kw = {} -if is_setuptools: - kw['install_requires'] = ['sqlparse'] - -versionpath = join(abspath(dirname(__file__)), 'mysql2sql', '__version__.py') -load_source('mysql2sql_version', versionpath) -# Ignore: E402 module level import not at top of file -from mysql2sql_version import __version__ # noqa - -setup(name='mysql2sql', - version=__version__, - description='Broytman mysql2sql', - long_description=open('README.txt', 'rtU').read(), - author='Oleg Broytman', - author_email='phd@phdru.name', - url='http://phdru.name/Software/Python/', - license='GPL', - platforms=['any'], - keywords=[''], - classifiers=[ - 'Development Status :: 1 - Planning', - '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.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - ], - packages=['mysql2sql'], - package_data={}, - scripts=['scripts/mysql-to-sql.py'], - requires=[], - **kw) +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='https://phdru.name/Software/Python/sqlconvert/', + project_urls={ + 'Homepage': 'https://phdru.name/Software/Python/sqlconvert/', + 'Documentation': + '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', + }, + 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', + ], +)