init based on quickstart_etl

This commit is contained in:
Alex Fox
2025-05-20 00:08:39 +00:00
commit 0c682f7bc4
12 changed files with 409 additions and 0 deletions

14
setup.py Normal file
View File

@@ -0,0 +1,14 @@
from setuptools import find_packages, setup
setup(
name="quickstart_etl",
packages=find_packages(exclude=["quickstart_etl_tests"]),
install_requires=[
"dagster",
"dagster-cloud",
"boto3",
"pandas",
"matplotlib",
],
extras_require={"dev": ["dagster-webserver", "pytest"]},
)