-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
54 lines (48 loc) · 1.82 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
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_namespace_packages, setup
# to get the long description
README = Path(__file__).parent / "README.md"
# update the version number in dbt/adapters/risingwave/__version__.py
VERSION = Path(__file__).parent / "dbt/adapters/risingwave/__version__.py"
def _plugin_version() -> str:
"""
Pull the package version from the main package version file
"""
attributes = {}
exec(VERSION.read_text(), attributes)
return attributes["version"]
setup(
name="dbt-risingwave",
version=_plugin_version(),
description="The RisingWave adapter plugin for dbt",
long_description=README.read_text(),
long_description_content_type="text/markdown",
license="http://www.apache.org/licenses/LICENSE-2.0",
keywords="dbt RisingWave",
author="Dylan Chen",
author_email="[email protected]",
url="https://github.com/risingwavelabs/dbt-risingwave",
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
include_package_data=True,
install_requires=[
"dbt-postgres~=1.8.0",
"dbt-core~=1.8.0",
# not sure if these are needed due to inheritance from dbt-postgres
# but doesn't hurt to be explicit I suppose
"dbt-common>=1.0.4,<2.0",
"dbt-adapters>=1.1.1,<2.0",
],
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
)