forked from dbt-labs/dbt-core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (27 loc) · 972 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
#!/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.13.0rc1"
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=description,
author="Fishtown Analytics",
author_email="[email protected]",
url="https://github.com/fishtown-analytics/dbt",
packages=find_packages(),
install_requires=[
'dbt-core=={}'.format(package_version),
'dbt-postgres=={}'.format(package_version),
'dbt-redshift=={}'.format(package_version),
'dbt-snowflake=={}'.format(package_version),
'dbt-bigquery=={}'.format(package_version),
]
)