forked from nicholasyager/dbt-loom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1.03 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
[tool.poetry]
name = "dbt-loom"
version = "0.5.6"
description = "A dbt-core plugin to import public nodes in multi-project deployments."
authors = ["Nicholas Yager <yager@nicholasyager.com>"]
readme = "README.md"
packages = [{ include = "dbt_loom" }]
[tool.commitizen]
version = "0.5.6"
version_files = ["pyproject.toml:^version"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
dbt-core = ">=1.6.0,<1.9.0"
requests = "^2.31.0"
google-cloud-storage = "^2.13.0"
boto3 = "^1.28.84"
azure-storage-blob = "^12.19.0"
azure-identity = "^1.15.0"
types-pyyaml = "^6.0.12.12"
types-networkx = "^3.2.1.20240313"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.0"
pytest = "^7.4.0"
isort = "^5.12.0"
dbt-duckdb = ">=1.6.0,<1.9.0"
duckdb = ">=0.8.0"
pre-commit = "^3.6.0"
mypy = "^1.8.0"
[tool.ruff]
line-length = 88
[tool.isort]
force_grid_wrap = 0 # Resolve conflict with Black
line_length = 88 # Comply with Ruff and Black
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"