forked from dagster-io/quickstart-dbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 767 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
import glob
from setuptools import find_packages, setup
setup(
name="assets_dbt_python",
packages=find_packages(exclude=["assets_dbt_python_tests"]),
# package data paths are relative to the package key
package_data={
"assets_dbt_python": ["../" + path for path in glob.glob("dbt_project/**", recursive=True)]
},
install_requires=[
"dagster",
"dagster-cloud",
"boto3",
"dagster-dbt",
"pandas",
"numpy",
"scipy",
"dbt-core",
"dbt-duckdb",
"dagster-duckdb",
"dagster-duckdb-pandas",
# packaging v22 has build compatibility issues with dbt as of 2022-12-07
"packaging<22.0",
],
extras_require={"dev": ["dagit", "pytest"]},
)