forked from dbt-labs/dbt-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (55 loc) · 1.64 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
#!/usr/bin/env python
from setuptools import find_packages
from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
package_name = "dbt"
package_version = "0.11.0"
description = """dbt (data build tool) is a command line tool that helps \
analysts and engineers transform data in their warehouse more effectively"""
setup(
name=package_name,
version=package_version,
description=description,
long_description_content_type=description,
author="Fishtown Analytics",
author_email="[email protected]",
url="https://github.com/fishtown-analytics/dbt",
packages=find_packages(),
package_data={
'dbt': [
'include/index.html',
'include/global_project/dbt_project.yml',
'include/global_project/docs/*.md',
'include/global_project/macros/*.sql',
'include/global_project/macros/**/*.sql',
'include/global_project/macros/**/**/*.sql',
]
},
test_suite='test',
entry_points={
'console_scripts': [
'dbt = dbt.main:main',
],
},
scripts=[
'scripts/dbt',
],
install_requires=[
'Jinja2>=2.8',
'PyYAML>=3.11',
'psycopg2>=2.7.5,<2.8',
'sqlparse==0.2.3',
'networkx==1.11',
'minimal-snowplow-tracker==0.0.1',
'snowflake-connector-python>=1.4.9',
'requests>=2.18.0,<3',
'colorama==0.3.9',
'google-cloud-bigquery>=1.0.0,<2',
'agate>=1.6,<2',
'jsonschema==2.6.0',
'boto3>=1.6.23,<1.8.0',
'botocore>=1.9.23,<1.11.0',
]
)