-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "dq-tools"
version = "3.0.0"
description = "Data Quality package"
authors = ["IL <dat@infinitelambda.com>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
dbt-snowflake = "~1.8.0"
dbt-bigquery = "~1.8.0"
dbt-metricflow = {extras = ["snowflake", "bigquery"], version = "~0.7.0"}
[tool.poetry.dev-dependencies]
pre-commit = "^2.17.0"
poethepoet = "^0.16.4"
sqlfluff = "^2.3.5"
sqlfluff-templater-dbt = "^2.3.5"
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.8"
mkdocs-minify-plugin = "^0.7.1"
mike = "^2.0.0"
cryptography = "^43.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
git-hooks = { "shell" = "pre-commit install --install-hooks && pre-commit install --hook-type commit-msg" }
dq-tools-test-local = [
{cmd = "./run_test.sh snowflake local"},
]
dq-tools-test-snowflake = [
{cmd = "./run_test.sh snowflake github"},
]
dq-tools-test-bigquery = [
{cmd = "./run_test.sh bigquery github"},
]