-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (37 loc) · 1.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
[project]
name = "airflow-provider-kinetica"
version = "1.0.3"
authors = [
{name = "Chad Juliano", email = "[email protected]"},
]
description = "Kinetica Airflow provider package"
readme = "README.md"
requires-python = "~=3.8"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"apache-airflow>=2.3",
"gpudb",
"apache-airflow-providers-apache-spark"
]
#dynamic = ["version"]
[project.urls]
Homepage = "https://kinetica.com"
Documentation = "https://github.com/kineticadb/kinetica-airflow"
Repository = "https://github.com/kineticadb/kinetica-airflow"
[tool.setuptools.dynamic]
#version = {attr = "kinetica_provider.__version__"}
[tool.setuptools.packages.find]
include = ["kinetica_provider*"]
[project.entry-points."apache_airflow_provider"]
provider_info = "kinetica_provider.get_provider_info:get_provider_info"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"