forked from Teradata/dbt-teradata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (53 loc) · 1.88 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.version_info < (3, 8) or sys.version_info >= (3, 12):
print('Error: dbt-teradata does not support this version of Python.')
print('Please install Python 3.8 or higher but less than 3.12.')
sys.exit(1)
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
package_name = "dbt-teradata"
package_version = "1.0.0"
description = """The Teradata adapter plugin for dbt (data build tool)"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="Teradata Corporation",
author_email="[email protected]",
url="https://github.com/Teradata/dbt-teradata",
packages=[
'dbt.adapters.teradata',
'dbt.include.teradata',
],
package_data={
'dbt.include.teradata': [
'macros/*.sql',
'macros/materializations/**/*.sql',
'macros/utils/*.sql',
'dbt_project.yml',
'sample_profiles.yml',
],
},
install_requires=[
"dbt-core==1.7.11",
"teradatasql>=16.20.0.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,<3.12",
)