-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
99 lines (89 loc) · 3.63 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
91
92
93
94
95
96
97
98
99
import os
import re
from setuptools import setup, find_packages
c_modules = []
try:
from Cython.Build import cythonize
from Cython import __version__ as cython_version
print(f'Using Cython {cython_version} to build cython modules')
c_modules = cythonize('clickhouse_connect/driverc/*.pyx', language_level='3str')
except ImportError as ex:
print('Cython Install Failed, Not Building C Extensions: ', ex)
cythonize = None
except Exception as ex: # pylint: disable=broad-exception-caught
print('Cython Build Failed, Not Building C Extensions: ', ex)
cythonize = None
def run_setup(try_c: bool = True):
if try_c:
kwargs = {
'ext_modules': c_modules,
}
else:
kwargs = {}
project_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(project_dir, 'README.md'), encoding='utf-8') as read_me:
long_desc = read_me.read()
version = 'development'
if os.path.isfile('.dev_version'):
with open(os.path.join(project_dir, '.dev_version'), encoding='utf-8') as version_file:
version = version_file.readline()
else:
with open(os.path.join(project_dir, 'clickhouse_connect', '__version__.py'), encoding='utf-8') as version_file:
file_version = version_file.read().strip()
match = re.search(r"version\s*=\s*'(.+)'", file_version)
if match is None:
raise ValueError(f'invalid version {file_version} in clickhouse_connect/__version__.py')
version = match.group(1)
setup(
name='clickhouse-connect',
author='ClickHouse Inc.',
author_email='clients@clickhouse.com',
keywords=['clickhouse', 'superset', 'sqlalchemy', 'http', 'driver'],
description='ClickHouse Database Core Driver for Python, Pandas, and Superset',
version=version,
long_description=long_desc,
long_description_content_type='text/markdown',
package_data={'clickhouse_connect': ['VERSION', 'py.typed']},
url='https://github.com/ClickHouse/clickhouse-connect',
packages=find_packages(exclude=['tests*']),
python_requires='~=3.8',
license='Apache License 2.0',
install_requires=[
'certifi',
'urllib3>=1.26',
'pytz',
'zstandard',
'lz4'
],
extras_require={
'sqlalchemy': ['sqlalchemy>1.3.21,<2.0'],
'numpy': ['numpy'],
'pandas': ['pandas'],
'arrow': ['pyarrow'],
'orjson': ['orjson'],
'tzlocal': ['tzlocal>=4.0'],
},
tests_require=['pytest'],
entry_points={
'sqlalchemy.dialects': ['clickhousedb.connect=clickhouse_connect.cc_sqlalchemy.dialect:ClickHouseDialect',
'clickhousedb=clickhouse_connect.cc_sqlalchemy.dialect:ClickHouseDialect']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
**kwargs
)
try:
run_setup()
# pylint: disable=broad-exception-caught
except (Exception, IOError, SystemExit) as e:
print(f'Unable to compile C extensions for faster performance due to {e}, will use pure Python')
run_setup(False)