-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
73 lines (67 loc) · 1.37 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.black]
line-length = 99
include = '/project$|\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.eggs
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.sqlfmt]
exclude=["target/**/*", "dbt_packages/**/*"]
[tool.poetry]
authors = ["Padraic Slattery <[email protected]>"]
description = "Showcase of advanced use cases relating to CI in dbt"
keywords = [
"python",
"sql",
"Continuous Integration",
"dbt",
]
license ="MIT"
maintainers = ["Padraic Slattery <[email protected]>"]
name = "dbt-beyond-the-basics"
package-mode = false
readme = "README.md"
repository = "https://github.com/pgoslatara/dbt-beyond-the-basics"
version = "0.0.0"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
dbt-core=">=1.9.0,<1.10.0"
dbt-bigquery=">=1.9.0,<1.10.0"
[tool.poetry.group.dev.dependencies]
autoflake = "*"
black = "*"
dbt-artifacts-parser = ">=0.8"
dbt-bouncer = ">=1.6.4"
dbt-coverage = "*"
dbterd = "*"
duckdb = "*"
flake8 = "*"
GitPython = "*"
google-cloud-bigquery = "*"
google-cloud-storage = "*"
isort = "*"
mermaid-py = "*"
pre-commit = "*"
pyarrow = "*"
pytablewriter = "*"
pytest = "*"
pytest-xdist = "*"
pyupgrade = "*"
retry = "*"
"shandy-sqlfmt" = {version = "*", extras=["shandy-sqlfmt[jinjafmt]"]}
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"