This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
70 lines (64 loc) · 2.43 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
#! /usr/bin/python3
# Copyright 2021-present StarRocks, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import ast
import re
from setuptools import find_packages, setup
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("sqlalchemy_starrocks/__init__.py", "rb") as f:
python_client_version = _version_re.search(f.read().decode("utf-8"))
assert python_client_version is not None
version = str(ast.literal_eval(python_client_version.group(1)))
with open('README.md') as readme:
long_description = readme.read()
setup(
name="sqlalchemy-starrocks",
version=version,
description="Python interface to StarRocks",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
author="StarRocks Team",
url="https://github.com/StarRocks/starrocks",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database :: Front-Ends",
],
install_requires=[
"sqlalchemy>=1.4, <2",
"sqlalchemy-utils>=0.38.3, <0.39",
"pymysql>=1.1.0",
# "mysqlclient>=2.1.0, <3",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "mock"],
test_suite="test.test_suite",
packages=find_packages(),
# package_data={"": ["LICENSE", "README.md"]},
# include_package_data=True,
# zip_safe=False,
entry_points={
"sqlalchemy.dialects": [
"starrocks = sqlalchemy_starrocks.dialect:StarRocksDialect",
"starrocks.pymysql = sqlalchemy_starrocks.dialect:StarRocksDialect",
]
},
)