-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
26 lines (23 loc) · 1.33 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
[tool.poetry]
name = "flink_table_api_python"
version = "0.1.0"
description = "Examples for using Python Table API with Confluent Cloud"
authors = ["Confluent"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
example_00_hello_world = "flink_table_api_python.examples.table.example_00_hello_world:run"
example_01_catalogs_and_databases = "flink_table_api_python.examples.table.example_01_catalogs_and_databases:run"
example_02_unbounded_tables = "flink_table_api_python.examples.table.example_02_unbounded_tables:run"
example_03_transforming_tables = "flink_table_api_python.examples.table.example_03_transforming_tables:run"
example_04_creating_tables = "flink_table_api_python.examples.table.example_04_creating_tables:run"
example_05_table_pipelines = "flink_table_api_python.examples.table.example_05_table_pipelines:run"
example_06_values_and_data_types = "flink_table_api_python.examples.table.example_06_values_and_data_types:run"
example_07_changelogs = "flink_table_api_python.examples.table.example_07_changelogs:run"
example_08_integration_and_deployment = "flink_table_api_python.examples.table.example_08_integration_and_deployment:run"
[tool.poetry.dependencies]
python = ">= 3.9, < 3.12"
confluent_flink_table_api_python_plugin = "1.20.48"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"