33 lines
525 B
TOML
33 lines
525 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"
|
|
attribute = "defs"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest",
|
|
"ruff",
|
|
"sqlfluff",
|
|
"pre-commit",
|
|
]
|