feat(dagster): add Dagster

This commit is contained in:
Masaki Yatsu
2025-09-15 19:25:31 +09:00
parent c725124a7a
commit dbcbaedf6f
21 changed files with 4018 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
[project]
name = "dagster_tutorial"
requires-python = ">=3.9,<3.14"
version = "0.1.0"
dependencies = [
"dagster==1.11.10",
"dagster-duckdb>=0.27.10",
]
[dependency-groups]
dev = [
"dagster-webserver",
"dagster-dg-cli",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
force-include = { "pyproject.toml" = "pyproject.toml" }
[tool.dg]
directory_type = "project"
[tool.dg.project]
root_module = "dagster_tutorial"
registry_modules = [
"dagster_tutorial.components.*",
]