-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
60 lines (50 loc) · 1.26 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
[tool.poetry]
name = "airflow-diagrams"
version = "2.1.0"
description = "Auto-generated Diagrams from Airflow DAGs."
authors = ["Felix Uellendall <feluelle@pm.me>"]
license = "Apache-2.0"
readme = "README.md"
keywords = [
"airflow",
"diagrams",
"cli"
]
[tool.poetry.scripts]
airflow-diagrams = "airflow_diagrams.cli:app"
[tool.poetry.dependencies]
python = "^3.9"
apache-airflow-client = "^2.8.0"
diagrams = "^0.21.0"
fs = "^2.4.16"
PyYAML = "^6.0.1"
thefuzz = {version = "^0.19.0", extras = ["speedup"]}
typer = {extras = ["all"], version = "^0.6.1"}
[tool.poetry.dev-dependencies]
networkx = "^3.2.1"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
pytest-order = "^1.2.0"
requests = "^2.32.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = ["airflow_diagrams/__main__.py"]
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "S", "UP", "PGH", "D", "I", "A", "PT"]
ignore = ["D100", "D107"]
[tool.ruff.per-file-ignores]
"dev/*" = ["D"]
"tests/*" = ["S101", "D"]
"airflow_diagrams/cli.py" = ["B008", "D"]
"airflow_diagrams/__main__.py" = ["D"]
[tool.ruff.pydocstyle]
convention = "pep257"
[tool.pytest.ini_options]
testpaths = [
"tests",
]