-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.41 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
[tool.poetry]
name = "dbt-airflow"
version = "3.0.1"
description = "A Python package that creates fine-grained Airflow tasks for dbt"
repository = "https://github.com/gmyrianthous/dbt-airflow"
authors = ["Giorgos Myrianthous <giorgos.myrianthous@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "dbt_airflow" }]
[tool.poetry.dependencies]
python = ">=3.7.2,<4"
dbt-core = ">=1.4.0"
apache-airflow = ">=2.0.0,<3"
pydantic = ">=2.0.0,<3"
apache-airflow-providers-cncf-kubernetes = ">=6.0.0"
[tool.poetry.group.dev.dependencies]
dbt-postgres = ">=1.4.0"
pytest = ">=7.1,<8"
commitizen = ">=2.40,<4.0"
mkdocs-material = ">=8.2,<10.0"
mkdocstrings-python = ">=0.8.2,<1.2.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.0.1"
version_files = [
"pyproject.toml:^version"
]
update_changelog_on_bump = true
style = [
["qmark", "fg:#ff9d00 bold"],
["question", "bold"],
["answer", "fg:#ff9d00 bold"],
["pointer", "fg:#ff9d00 bold"],
["highlighted", "fg:#ff9d00 bold"],
["selected", "fg:#cc5454"],
["separator", "fg:#cc5454"],
["instruction", ""],
["text", ""],
["disabled", "fg:#858585 italic"]
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 99
extend-select = [
"T201", # Remove print statements: https://docs.astral.sh/ruff/rules/print/
]
[tool.ruff.format]
quote-style = "single"