-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (53 loc) · 1.48 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
[build-system]
requires = ["build", "setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
version = "1.0.5"
name = "astronomer-dbcleanup-plugin"
description = "A DB cleanup plugin for Astronomer Airflow"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"airflow",
"analytics",
"Astronomer",
"astronomer.io",
"plugin",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"apache-airflow>=2",
]
[project.entry-points."airflow.plugins"]
astronomer_dbcleanup_plugin = "astronomer_dbcleanup_plugin.dbcleanup_plugin:AstronomerPlugin"
[options.extras_require]
test = [
"flake8",
"flake8-import-order>=0.18",
"pytest",
"pytest-cov",
"pytest-flask",
"pytest-mock",
"pytest-runner~=4.0",
]
[tool.aliases]
test = "pytest"
[tool.flake8]
max-line-length = "160"
application-import-names = "astronomer"
import-order-style = "google"
[tool.setuptools]
include-package-data = true
package-dir = { "astronomer_dbcleanup_plugin" = "." }
[tool.setuptools.dynamic]
version = { attr = "dbcleanup_plugin.__version__" }
[tool.setuptools.package-data]
astronomer_dbcleanup_plugin = ["templates/dbcleanup_plugin/index.html"]