generated from astronomer/airflow-provider-sample
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 1.11 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "airflow-provider-kaggle"
authors = [
{name = "Panagiotis Simakis", email = "sp1thas@autistici.org"},
]
license = {text = "Apache License 2.0"}
description = "A Kaggle Apache Airflow provider package."
classifiers = [
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
"Development Status :: 3 - Alpha",
]
dynamic = ["version"]
requires-python = "~=3.8"
dependencies = ["apache-airflow>=2.0", "kaggle>=1.5"]
[project.optional-dependencies]
dev = ["pre-commit"]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/sp1thas/airflow-provider-kaggle/"
Source = "https://github.com/sp1thas/airflow-provider-kaggle/"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.entry-points.apache_airflow_provider]
provider_info = "kaggle_provider.__init__:get_provider_info"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "kaggle_provider.__version__"}
[tool.setuptools.packages.find]
exclude = ["*tests.*", "*tests"]