代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
import ast
import re
import os
import sys
from io import open
from setuptools import setup, Extension
from setuptools.command.build_py import build_py as _build_py
'''
How to build and upload this package to PyPi
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*
How to build and upload this package to Local site:
python setup.py install
'''
class build_py(_build_py):
def run(self):
self.run_command("build_ext")
return super().run()
_version_re = re.compile(r"__version__\s+=\s+(.*)")
if sys.platform == "win32":
libs = ["odbc32"]
else:
libs = ["odbc"]
# define ODBC sources
sourceDir = "sqlcli/odbc"
sources = [os.path.join(sourceDir, n) for n in sorted(os.listdir(sourceDir)) if n.endswith(".c")]
depends = [os.path.join(sourceDir, "ceoModule.h")]
# setup the extension
extension = Extension(
name="sqlcliodbc",
libraries=libs,
define_macros=[("BUILD_VERSION", "3.0")],
sources=sources,
depends=depends)
with open("sqlcli/__init__.py", "rb") as f:
version = str(
ast.literal_eval(_version_re.search(f.read().decode("utf-8")).group(1))
)
def open_file(filename):
"""Open and read the file *filename*."""
with open(filename, 'r+', encoding='utf-8') as rf:
return rf.read()
readme = open_file("README.md")
setup(
name='robotslacker-sqlcli',
version=version,
description='SQL Command test tool, use JDBC/ODBC',
long_description=readme,
keywords='sql command test tool',
long_description_content_type='text/markdown',
platforms='any',
install_requires=['JPype1', 'setproctitle', 'pathlib', 'urllib3',
'pyparsing', 'click', 'prompt_toolkit',
'fs', 'hdfs', 'wget', 'httptools', 'pika', 'paramiko',
'requests', 'websockets', 'pydantic', 'uvicorn[standard]', 'fastapi',
'hbase-thrift', 'thrift', 'redis', 'redis-py-cluster'],
author='RobotSlacker',
author_email='184902652@qq.com',
url='https://github.com/robotslacker/sqlcli',
zip_safe=False,
packages=['sqlcli'],
package_data={'sqlcli': ['jlib/README', '*.pyd', '*.so', 'odbc/*', 'conf/*ini', 'profile/*']},
python_requires='>=3.6',
entry_points={
"console_scripts": ["sqlcli = sqlcli.main:cli"],
"distutils.commands": ["lint = tasks:lint", "test = tasks:test"],
},
ext_modules=[extension],
cmdclass={"build_py": build_py},
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。