-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (62 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["./src"] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project]
name = "flight-ibis"
version = "0.0.34"
description = "An Apache Arrow Flight server/client example powered by Ibis and DuckDB"
readme = "README.md"
authors = [{ name = "Philip Moore", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["flight-ibis", "flight", "ibis"]
dependencies = [
"pyarrow==17.0.*",
"click==8.1.*",
"ibis-framework[duckdb]==9.5.*",
"munch==4.0.*",
"pyOpenSSL==24.2.*",
"cryptography==43.0.*",
"pyjwt==2.9.*",
"codetiming==1.4.*",
"pyspark==3.5.*",
"urllib3==2.2.*"
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/gizmodata/flight-ibis-demo"
[project.scripts]
flight-server = "flight_ibis.server:run_flight_server"
flight-client = "flight_ibis.client:run_flight_client"
flight-spark-client = "flight_ibis.spark_client_test:run_spark_flight_client"
flight-data-bootstrap = "flight_ibis.setup.create_local_duckdb_database:create_local_duckdb_database"
flight-create-tls-keypair = "flight_ibis.setup.tls_utilities:click_create_tls_keypair"
flight-create-mtls-ca-keypair = "flight_ibis.setup.mtls_utilities:create_ca_keypair"
flight-create-mtls-client-keypair = "flight_ibis.setup.mtls_utilities:create_client_keypair"
[tool.bumpver]
current_version = "0.0.34"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"$',
'^current_version = "{version}"$',
]
"src/flight_ibis/__init__.py" = [
'^__version__ = "{version}"$',
]