Files
data-platform/pyproject.toml
2026-03-04 13:40:19 +00:00

33 lines
537 B
TOML

[project]
name = "data-platform"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"dagster",
"dagster-webserver",
"dagster-postgres",
"dagster-dbt",
"dbt-core",
"dbt-postgres",
"pyfunda",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["data_platform"]
[tool.dagster]
module_name = "data_platform.definitions"
attribute = "defs"
[dependency-groups]
dev = [
"pytest",
"ruff",
"sqlfluff",
"pre-commit",
]