-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 947 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
[tool.poetry]
name = "dataverk-airflow"
version = "1.0.0"
description = ""
authors = ["NAV", "NADA"]
readme = "README.md"
packages = [{include = "dataverk_airflow"}]
repository = "https://github.com/navikt/dataverk-airflow"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Apache Airflow',
'Framework :: Apache Airflow :: Provider',
]
[tool.poetry.dependencies]
apache-airflow = "2.9.3"
apache-airflow-providers-cncf-kubernetes = "8.3.3"
pathlib = "^1.0.1"
python = "^3.8,<3.12"
apache-airflow-providers-slack = "8.7.1"
exceptiongroup = "^1.2.2"
knatch = "^1.0.5"
[tool.poetry.group.test.dependencies]
apache-airflow = "2.9.3"
apache-airflow-providers-cncf-kubernetes = "8.3.3"
pyaml = "^24.9.0"
pytest = ">=7.4.2,<9.0.0"
pytest-datafiles = "^3.0.0"
[tool.poetry.group.integration-test.dependencies]
apache-airflow = "2.9.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"