-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
63 lines (53 loc) · 1.34 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
[tool.mypy]
# TODO: widen range of files as we fix issues
namespace_packages = true
[[tool.mypy.overrides]]
module = ['ruamel', 'networkx']
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
target-version = ['py38']
[tool.ruff]
# Allow lines to be as long as 120 characters.
line-length = 120
[tool.poetry]
name = "dbt-meshify"
version = "0.5.5"
description = "a package to upgrade dbt packages to the dbt mesh framework"
authors = [
"Dave Connors <[email protected]>",
"Grace Goheen <[email protected]>",
"Nicholas Yager <[email protected]>",
]
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "dbt_meshify" }]
[tool.poetry.dependencies]
python = "^3.9"
dbt-core = "^1.5.0"
click = "^8.1.3"
dbt-postgres = { version = "^1.5.0", optional = true }
ruamel-yaml = "^0.17.31"
loguru = "^0.7.0"
[tool.poetry.extras]
postgres = ['dbt-postgres']
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
dbt-duckdb = "^1.5.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
mike = "^1.1.2"
mkdocs = "^1.4.3"
mkdocs-click = "^0.8.0"
mkdocs-material = "^9.1.12"
mypy = "^1.3.0"
pre-commit = "^3.3.1"
pytest = "^7.3.1"
types-pyyaml = "^6.0.12.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dbt-meshify = "dbt_meshify.main:cli"