53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
#! /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.
|
|
|
|
from setuptools import find_namespace_packages, setup
|
|
|
|
package_name = "dbt-starrocks"
|
|
# make sure this always matches dbt/adapters/starrocks/__version__.py
|
|
package_version = "1.0.0"
|
|
description = """The starrocks adapter plugin for dbt"""
|
|
|
|
setup(
|
|
name=package_name,
|
|
version=package_version,
|
|
description=description,
|
|
long_description=description,
|
|
author="fujianhj, long2ice",
|
|
author_email="fujianhj@gmail.com, long2ice@gmail.com",
|
|
url="",
|
|
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
"dbt-core==1.1.0",
|
|
"mysql-connector-python>=8.0.0,<8.1",
|
|
],
|
|
zip_safe=False,
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Operating System :: MacOS :: MacOS X',
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
],
|
|
python_requires=">=3.7,<3.10",
|
|
)
|