From 82b9adb0853e144999e3ad811d11cee3fc96dbba Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 18 Jan 2024 10:59:25 +0100 Subject: [PATCH] Add toml --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b1b4a84 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = "data-dwh-dbt-project" +version = "dev" +description = "" +authors = ["Pablo Martin "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +dbt-core = "^1.7.4" +dbt-postgres = "^1.7.4" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"