-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 771 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 771 Bytes
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
import glob
from setuptools import find_packages, setup
setup(
name="dagster_assets",
packages=find_packages(exclude=["dagster_assets_tests"]),
# package data paths are relative to the package key
package_data={
"dagster_assets": ["../" + 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": ["dagster-webserver", "pytest"]},
)