-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 974 Bytes
/
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
[tool.poetry]
name = "de-zoomcamp-project"
version = "0.1.0"
description = ""
authors = ["wtfzambo <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.0.0"
pmaw = "^3.0.0"
python-dotenv = "^1.0.0"
duckdb = "0.7.1"
prefect = "^2.10.4"
asyncpraw = "^7.7.0"
praw = "^7.7.0"
prefect-gcp = {extras = ["bigquery"], version = "^0.4.1"}
pandas-gbq = "^0.19.1"
dbt-bigquery = "^1.4.3"
[tool.poetry.group.dev.dependencies]
notebook = "^6.5.4"
flake8 = "^6.0.0"
black = "^23.3.0"
flake8-black = "^0.3.6"
isort = "^5.12.0"
sqlfluff = "^2.0.7"
sqlfluff-templater-dbt = "^2.0.7"
shandy-sqlfmt = {extras = ["jinjafmt"], version = "^0.18.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = false
lines_after_imports = 2
multi_line_output = 3
[tool.sqlfmt]
exclude=["dbt/target/**/*", "dbt/dbt_packages/**/*"]
line_length = 88
check = true