-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (69 loc) · 2.24 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
72
73
74
75
76
77
78
79
[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 = "spark-connect-proxy"
version = "0.0.11"
description = "A reverse proxy server which allows secure connectivity to a Spark Connect server"
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 = ["spark", "pyspark", "grpc", "reverse-proxy", "connect", "spark-connect"]
dependencies = [
"click==8.1.*",
"pyspark==3.5.1",
"grpcio-tools==1.66.*",
"grpcio-channelz==1.66.*",
"grpcio-status==1.66.*",
"pyjwt==2.9.*",
"python-dotenv==1.0.*",
"pyarrow_hotfix==0.6.*",
"protobuf==5.27.2",
"pyOpenSSL==24.2.1"
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"bumpver",
"pip-tools",
"pytest"
]
client = [
"ibis-framework==9.5.*",
"codetiming==1.4.*",
"pandas==2.2.*",
"pyarrow==17.0.*"
]
[project.urls]
Homepage = "https://github.com/gizmodata/spark-connect-proxy"
[project.scripts]
spark-connect-proxy-server = "spark_connect_proxy.server:click_serve"
spark-connect-proxy-create-jwt = "spark_connect_proxy.utilities.create_jwt:click_create_jwt"
spark-connect-proxy-create-tls-keypair = "spark_connect_proxy.utilities.tls_utilities:click_create_tls_keypair"
spark-connect-proxy-ibis-client-example = "spark_connect_proxy.client_examples.ibis_client_example:click_run_client_example"
[tool.bumpver]
current_version = "0.0.11"
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/spark_connect_proxy/__init__.py" = [
'^__version__ = "{version}"$',
]