forked from Teradata/dbt-teradata-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (44 loc) · 1.52 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (44 loc) · 1.52 KB
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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.version_info < (3, 7) or sys.version_info >= (3, 10):
print('Error: dbt-teradata does not support this version of Python.')
print('Please install Python 3.7 or higher but less than 3.10.')
sys.exit(1)
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
package_name = "dbt-teradata-utils"
package_version = "0.0.1a"
description = """The Teradata utils 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="developers@teradata.com",
url="https://github.com/Teradata/dbt-teradata-utils",
package_data={
'dbt.include.teradata': [
'macros/*.sql'
],
},
install_requires=[
"dbt-core==1.0.1",
"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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.7,<3.10",
)