-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (58 loc) · 1.59 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
[tool.poetry]
name = "pineapple-pipeline"
version = "0.1.0"
description = "dbt Project for the pineapple-pipeline"
authors = ["samuel <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
dbt-bigquery = {version = "^1.3.0", optional = true}
avro = {version = "^1.11.0", optional = true}
google-cloud-pubsub = {version = "2.9.0", optional = true}
python-dotenv = {version = "^0.19.2", optional = true}
fastavro = {version = "^1.4.10", optional = true}
typer = {version = "^0.4.1", optional = true}
cookiecutter = {version = "^2.1.1", optional = true}
re-data = {version = "^0.10.1", optional = true}
setuptools = {version = "^63.4.2", optional = true}
psycopg = {version = "^3.0.16", optional = true}
google-cloud-monitoring = {version = "^2.11.1", optional = true}
streamlit = {version = "^1.12.0", optional = true}
streamlit-aggrid = {version = "^0.3.2", optional = true}
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
sqlfluff-templater-dbt = "^0.12.0"
flake8 = "^4.0.1"
black = "^22.1.0"
[tool.poetry.extras]
pubsub = [
"setuptools",
"avro",
"psycopg",
"google-cloud-pubsub",
"python-dotenv",
"data-connectors",
"fastavro",
"typer"
]
monitoring = [
"google-cloud-pubsub",
"google-cloud-monitoring",
"pandas",
"streamlit",
"streamlit-aggrid"
]
dbt = [
"dbt-bigquery",
"re-data"
]
cookiecutter = [
"cookiecutter"
]
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
skip-magic-trailing-comma = true