-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (51 loc) · 1.18 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
[tool.poetry]
name = "airflow-ext"
version = "0.1.0"
description = "Airflow utility extension for Meltano"
authors = ["Meltano Team and Contributors"]
maintainers = ["Meltano Team and Contributors"]
readme = "README.md"
repository = "https://github.com/meltano/airflow-ext"
license = "Apache 2.0"
packages = [
{ include = "airflow_ext" },
{ include = "files_airflow_ext"},
]
include = [
"files_airflow_ext/orchestrate/meltano.py",
"files_airflow_ext/orchestrate/README.md",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
structlog = ">=20.1.0"
typer = "^0.13.0"
"meltano.edk" = "~=0.4.3"
[tool.poetry.group.dev.dependencies]
apache-airflow = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
airflow_extension = 'airflow_ext.main:app'
airflow_invoker = 'airflow_ext.pass_through:pass_through_cli'
[tool.ruff]
ignore = [
"ANN101",
]
line-length = 120
select = [
"E",
"F",
"B",
"I",
"ANN",
"D",
"UP",
]
target-version = "py38"
[tool.ruff.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.flake8-bugbear]
extend-immutable-calls = ["typer.Option"]
[tool.ruff.pydocstyle]
convention = "google"