forked from Dandandan/dbt-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 1013 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
36
37
38
39
#!/usr/bin/env python
from setuptools import find_packages
from distutils.core import setup
import os
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-athena"
package_version = "0.15.1"
description = """The athena adpter 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='Fishtown Analytics',
author_email='info@fishtownanalytics.com',
url='https://github.com/fishtown-analytics/dbt',
packages=find_packages(),
package_data={
'dbt': [
'include/athena/dbt_project.yml',
'include/athena/macros/*.sql',
'include/athena/macros/*/*.sql',
]
},
install_requires=[
'dbt-core=={}'.format(package_version),
'PyAthena',
]
)