-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (72 loc) · 2.48 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# -*- 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='[email protected]',
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},
)