-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (45 loc) · 1.37 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
[project]
requires-python = ">=3.8"
[tool.poetry]
name = "apache-airflow-providers-anomalo"
version = "0.2.1"
description = "An Apache Airflow provider for Anomalo"
license = "Apache-2.0"
authors = ["Anomalo <[email protected]>"]
readme = "README.md"
repository = "https://github.com/anomalo-hq/anomalo-airflow-provider"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
packages = [{include = "airflow", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
anomalo = "^0.17.0"
importlib-resources = "^6.1.1"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
ruff = "^0.1.7"
apache-airflow = "^2.8.1"
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins]
[tool.poetry.plugins."apache_airflow_provider"]
"provider_info" = "airflow.providers.anomalo.__init__:get_provider_info"
[tool.ruff]
select = ["I", "ICN", "PLE", "YTT"]
target-version = "py310"
[tool.ruff.isort]
known-first-party = ["anomalo", "python_client", "dquality", "fact_listing", "site_apps",]
lines-after-imports = 2
[tool.ruff.per-file-ignores]
"tests/**" = ["I001"]