-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathsetup.py
34 lines (28 loc) · 1.14 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
from typing import Dict
from setuptools import find_packages, setup # type: ignore
def get_version() -> str:
version: Dict[str, str] = {}
with open("dagster_dbt/version.py") as fp:
exec(fp.read(), version) # pylint: disable=W0122
return version["__version__"]
if __name__ == "__main__":
setup(
name="dagster-dbt",
version=get_version(),
author="Elementl",
author_email="[email protected]",
license="Apache-2.0",
description="A Dagster integration for dbt",
url="https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-dbt",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=["test"]),
install_requires=["dagster", "dagster-pandas", "pandas", "requests", "attrs"],
extras_require={"test": ["dbt==0.17.*"]},
zip_safe=False,
)