forked from tglunde/dbt-exasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 797 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
#!/usr/bin/env python
from setuptools import find_packages
from distutils.core import setup
package_name = "dbt-exasol"
package_version = "1.0.3"
description = """The exasol adpter plugin for dbt (data build tool)"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=description,
author='Torsten Glunde',
author_email='torsten@glunde.de',
maintainer='Ilija Kutle',
url='https://www.glunde.de',
packages=find_packages(),
package_data={
'dbt': [
'include/exasol/dbt_project.yml',
'include/exasol/macros/*.sql',
'include/exasol/macros/**/*.sql',
]
},
install_requires=[
'dbt-core>={}'.format('0.19.0'),
'pyexasol>={}'.format('0.11')
]
)