-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
51 lines (43 loc) · 1.13 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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "airflow-provider-sample"
authors = [
{ name = "Pete DeJoy", email = "[email protected]" },
{ name = "Josh Fell", email = "[email protected]" },
{ name = "Astronomer", email = "[email protected]" },
]
license = { text = "Apache License 2.0" }
description = "A sample Apache Airflow provider package built by Astronomer."
classifiers = [
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
]
dynamic = [
"version"
]
requires-python = "~=3.8"
dependencies = [
"apache-airflow>=2.4"
]
[project.urls]
Homepage = "https://astronomer.io"
Source = "https://github.com/astronomer/airflow-provider-sample/"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.entry-points.apache_airflow_provider]
provider_info = "sample_provider.__init__:get_provider_info"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = { attr = "sample_provider.__version__" }
[tool.setuptools.packages.find]
exclude = [
"*tests.*",
"*tests"
]