-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.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
#!/usr/bin/env python
from setuptools import find_namespace_packages, setup
package_name = "dbt-databend-cloud"
# make sure this always matches dbt/adapters/{adapter}/__version__.py
package_version = "1.8.1"
description = """The Databend adapter plugin for dbt"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=description,
author="Databend Cloud Team",
author_email="zhangzhihan@datafuselabs.com",
url="https://github.com/databendcloud/dbt-databend.git",
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
include_package_data=True,
install_requires=[
"dbt-common>=1.0.4,<2.0",
"dbt-adapters>=1.1.1,<2.0",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0",
# installed via dbt-core but referenced directly; don't pin to avoid version conflicts with dbt-core
"agate",
"databend-sqlalchemy~=0.3.2",
"agate",
],
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.1.x",
],
python_requires=">=3.8",
)