This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
forked from dbeatty10/dbt-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
74 lines (60 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.version_info < (3, 6, 2):
print('Error: dbt-mysql does not support this version of Python.')
print('Please upgrade to Python 3.6.2 or higher.')
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-mysql"
package_version = "0.19.0rc1"
description = """The MySQL adapter 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="Doug Beatty",
author_email="doug.beatty@gmail.com",
url="https://github.com/dbeatty10/dbt-mysql",
packages=[
'dbt.adapters.mysql',
'dbt.include.mysql',
'dbt.adapters.mysql5',
'dbt.include.mysql5',
],
package_data={
'dbt.include.mysql': [
'macros/*.sql',
'macros/materializations/**/*.sql',
'dbt_project.yml',
'sample_profiles.yml',
],
'dbt.include.mysql5': [
'macros/*.sql',
'macros/materializations/**/*.sql',
'dbt_project.yml',
'sample_profiles.yml',
],
},
install_requires=[
"dbt-core==0.19.0rc1",
"mysql-connector-python~=8.0.22",
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires=">=3.6.2",
)