This commit is contained in:
2026-07-23 07:48:34 +01:00
commit 50c1e2cff8
53 changed files with 3286 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[project]
name = "dagster_intro"
requires-python = ">=3.10,<3.15"
version = "0.1.0"
dependencies = [
"dagster==1.13.14",
"dagster-duckdb>=0.29.14",
]
[dependency-groups]
dev = [
"dagster-dg-cli",
"dagster-webserver",
]
[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_intro"
registry_modules = [
"dagster_intro.components.*",
]