-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 994 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
[tool.poetry]
authors = ["Oracen <alex.stenlake@gmail.com>"]
description = "Tooling for running DBT jobs in Temporal"
license = "MIT"
name = "temporal_dbt_python"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
python = ">=3.7.2, <3.11.0"
dbt-core = ">=1.0.0"
dbt-postgres = {version = ">=1.0.0", optional = true}
dbt-redshift = {version = ">=1.0.0", optional = true}
dbt-snowflake = {version = ">=1.0.0", optional = true}
dbt-spark = {version = ">=1.0.0", optional = true}
temporalio = "^0.1b2"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
pytest = "^7.2.0"
[tool.poetry.extras]
adapters = ["dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-snowflake", "dbt-spark"]
postgres = ["dbt-postgres"]
redshift = ["dbt-redshift"]
snowflake = ["dbt-snowflake"]
spark = ["dbt-spark"]
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
pre-commit = "^2.20.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]