-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (32 loc) · 1.07 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
try:
import setuptools_scm
version = setuptools_scm.get_version()
except Exception:
import warnings
warnings.warn(f"could not determine {__name__} package version")
version = "0.0.0"
package_name = "dbt-azuresynapse"
python_min_version = "3.6.3"
description = """The azuresynapse adapter plugin for dbt (data build tool)"""
setup(
name=package_name,
description=description,
long_description=description,
version=version,
author="Embold Health",
author_email="[email protected]",
url="https://github.com/embold-health/dbt-azuresynapse",
packages=find_packages(exclude=["dbt-integration-tests"]),
package_data={
"dbt": [
"include/azuresynapse/dbt_project.yml",
"include/azuresynapse/macros/*.sql",
"include/azuresynapse/macros/materializations/**/*.sql"
]
},
install_requires=["dbt-core>=0.17.2", "pyodbc==4.0.30"],
python_requires=">{}".format(python_min_version),
)