-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
132 lines (111 loc) · 2.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = ["hatchling"]
build-backend="hatchling.build"
[project]
name = "airflow-config"
authors = [{name = "the airflow-config authors", email = "[email protected]"}]
description = "Airflow utilities for configuration of many DAGs and DAG environments"
readme = "README.md"
license = { text = "Apache-2.0" }
version = "1.0.0"
requires-python = ">=3.9"
keywords = [
"airflow",
"scheduler",
"config",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"apache-airflow>=2.8,<3",
"colorlog",
"hydra-core",
"jinja2",
"omegaconf",
"pydantic>=2",
]
[project.optional-dependencies]
develop = [
"build",
"bump-my-version",
"check-manifest",
"hatchling",
"pytest",
"pytest-cov",
"ruff",
"twine",
"wheel",
]
[project.scripts]
[project.urls]
Repository = "https://github.com/airflow-laminar/airflow-config"
Homepage = "https://github.com/airflow-laminar/airflow-config"
[tool.bumpversion]
current_version = "1.0.0"
commit = true
tag = false
[[tool.bumpversion.files]]
filename = "airflow_config/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[tool.check-manifest]
ignore = [
".copier-answers.yml",
"Makefile",
"setup.py",
"docs/**/*",
]
[tool.coverage.run]
branch = true
omit = [
"airflow_config/tests/integration/",
]
[tool.coverage.report]
exclude_also = [
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
]
ignore_errors = true
fail_under = 50
[tool.hatch.build]
artifacts = []
[tool.hatch.build.sources]
src = "/"
[tool.hatch.build.targets.sdist]
packages = ["airflow_config"]
[tool.hatch.build.targets.wheel]
packages = ["airflow_config"]
[tool.pytest.ini_options]
addopts = ["-vvv", "--junitxml=junit.xml"]
asyncio_mode = "strict"
testpaths = "airflow_config/tests"
[tool.ruff]
line-length = 150
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
combine-as-imports = true
default-section = "third-party"
known-first-party = ["airflow_config"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.yardang]
title = "airflow-config"
root = "README.md"
pages = ["docs/src/API.md"]
use-autoapi = false