-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (51 loc) · 1.42 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
[project]
name = "airflow-providers-mattermost"
description = "Apache Airflow Mattermost provider"
authors = [
{name = "mee7ya", email = "[email protected]"},
]
dependencies = [
"apache-airflow>=2.6.0",
"requests>=2.27.0",
]
requires-python = "<3.13, >=3.10"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["apache", "airflow", "mattermost", "provider"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
]
dynamic = ["version"]
[dependency-groups]
dev = ["ruff>=0.7.2"]
docs = ["sphinx>=8.1.3", "sphinx-rtd-theme>=3.0.1"]
test = ["pytest>=8.3.3"]
[build-system]
requires = ["setuptools >= 75.3"]
build-backend = "setuptools.build_meta"
[project.entry-points.apache_airflow_provider]
provider_info = "airflow_providers_mattermost.__init__:get_provider_info"
[tool.setuptools]
packages = [
"airflow_providers_mattermost",
"airflow_providers_mattermost.common",
"airflow_providers_mattermost.hooks",
"airflow_providers_mattermost.operators",
"airflow_providers_mattermost.notifiers",
]
[tool.setuptools.dynamic]
version = {attr = "airflow_providers_mattermost.__version__"}
[tool.uv]
default-groups = ["dev", "test", "docs"]
[tool.ruff]
extend-exclude = ["volumes"]
[tool.ruff.lint]
extend-select = ["I", "W"]
[tool.ruff.format]
quote-style = "single"
[tool.pytest.ini_options]
testpaths = [
"tests",
]