X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=b71c2675a4babb72551acce9348b840fc96dd25f;hb=06c8b16824855cf8fa4a92abc1eb0b8580079124;hp=fe59c28d003d489ff9d4990e26cfd5c5f504fbc0;hpb=c6139c41bc7fc4c4f91aa1e7e1fc73056d6225e3;p=sqlconvert.git diff --git a/setup.py b/setup.py index fe59c28..b71c267 100755 --- a/setup.py +++ b/setup.py @@ -15,10 +15,6 @@ except ImportError: from distutils.core import setup is_setuptools = False -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 @@ -47,7 +43,7 @@ setup(name='mysql2sql', 'Programming Language :: Python :: 3.4', ], packages=['mysql2sql'], - scripts=[], package_data={}, - requires=[], - **kw) + scripts=['scripts/mysql2sql'], + requires=['sqlparse', 'm_lib'], + )