forked from vertica/dbt-vertica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 953 Bytes
/
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
import pathlib
package_name = "dbt-vertica"
package_version = "0.18.2"
description = """The vertica adapter plugin for dbt (data build tool)"""
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name=package_name,
version=package_version,
description=description,
long_description=README,
long_description_content_type='text/markdown',
license='MIT',
author='Matthew Carter',
author_email='[email protected]',
url='https://github.com/mpcarter/dbt-vertica',
packages=find_packages(),
package_data={
'dbt': [
'include/vertica/dbt_project.yml',
'include/vertica/macros/*.sql',
'include/vertica/macros/materializations/*.sql',
]
},
install_requires=[
'dbt-core~=0.18.0',
'vertica-python>=0.10.0',
]
)