forked from feluelle/airflow-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 877 Bytes
/
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
[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"
typer = {extras = ["all"], version = "^0.6.1"}
diagrams = "^0.21.0"
thefuzz = {version = "^0.19.0", extras = ["speedup"]}
PyYAML = "^6.0"
apache-airflow-client = "^2.2.0"
fs = "^2.4.15"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
pytest-order = "^1.0.1"
networkx = "^2.7.1"
requests = "^2.27.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = ["airflow_diagrams/__main__.py"]