-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
139 lines (118 loc) · 3.18 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
133
134
135
136
137
138
139
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "airflow-memray"
authors = [
{ name = "Cedrik Neumann", email = "[email protected]" },
]
license = { text = "Apache License 2.0" }
description = "Memory profiling for Airflow with Memray."
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Apache Airflow :: Provider",
"Framework :: Apache Airflow",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
]
dynamic = [
"version",
]
requires-python = "~=3.11"
dependencies = [
"apache-airflow>=2.9",
"memray~=1.13",
]
[project.urls]
Homepage = "https://github.com/m1racoli/airflow-memray/"
Source = "https://github.com/m1racoli/airflow-memray/"
Documentation = "https://github.com/m1racoli/airflow-memray/"
Changelog = "https://github.com/m1racoli/airflow-memray/blob/main/CHANGELOG.md"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.entry-points.apache_airflow_provider]
provider_info = "airflow_memray.__init__:get_provider_info"
[project.entry-points."airflow.plugins"]
memray_plugin = "airflow_memray.plugin:MemrayPlugin"
[project.entry-points."airflow.policy"]
_ = 'airflow_memray.policies'
[tool.black]
line-length = 110
target-version = ["py311"]
[tool.commitizen]
annotated_tag = true
bump_message = "bump: version $current_version → $new_version [skip-ci]"
gpg_sign = true
major_version_zero = true
version = "0.1.0"
version_files = [
"airflow_memray/__init__.py",
]
[tool.mypy]
packages = "airflow_memray"
ignore_missing_imports = true
python_version = "3.11"
show_error_codes = true
[tool.ruff]
line-length = 110
target-version = "py311"
[tool.ruff.lint]
extend-select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"C", # flake8-comprehensions
"C90", # Complexity
"I", # isort
"ISC", # flake8-implicit-str-concat
"T10", # flake8-debugger
"UP", # pyupgrade
"W", # pycodestyle warnings
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = { attr = "airflow_memray.__version__" }
[tool.setuptools.packages.find]
exclude = [
"*tests.*",
"*tests",
]
[tool.towncrier]
directory = "changelog.d"
filename = "CHANGELOG.md"
issue_format = "[#{issue}](https://github.com/m1racoli/airflow-memray/issues/{issue})"
name = "airflow-memray"
package = "airflow_memray"
start_string = "<!-- towncrier release notes start -->\n"
title_format = "## [{version}](https://github.com/m1racoli/airflow-memray/tree/{version}) - {project_date}"
underlines = ["", "", ""]
[[tool.towncrier.type]]
directory = "security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true