-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 989 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "gcp_dbt_remote"
version = "0.4.6"
description = "cli to run dbt commands on GCP Cloud Run Jobs using dbt-server."
authors = ["emma.galliere <[email protected]>"]
readme = ["README.md"]
packages = [
{ include = "dbt_remote" },
{ include = "dbt_server" }
]
[tool.poetry.dependencies]
python = ">= 3.10, < 3.12"
google-cloud-run = "^0"
dbt-bigquery = ">=1.7.0 <1.8.0"
click-aliases = "^1"
termcolor = "^2"
google-cloud-build = "^3"
python-multipart = "^0"
cron-descriptor = "^1"
google-cloud-iam = "~2"
# dbt-server dependencies
google-cloud-logging = "^3"
uvicorn = "^0"
fastapi = "^0"
google-cloud-firestore = "^2"
google-cloud-scheduler = "^2"
# pytest dependencies
pytest = "^7"
httpx = "^0"
requests-mock = "^1"
pyfakefs = "^5"
[tool.poetry.scripts]
dbt-remote = "dbt_remote.cli:cli"
[tool.pytest.ini_options]
pythonpath = [".", "dbt_remote", "dbt_server"]