-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 1.95 KB
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
[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-sql-websocket-proxy"
version = "0.0.13"
description = "A Python-based Apache Arrow Flight SQL WebSocket Proxy Server"
readme = "README.md"
authors = [{ name = "Philip Moore", email = "philip@gizmodata.com" }]
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["arrow", "flight", "sql", "websocket", "proxy", "server"]
dependencies = [
"click==8.3.*",
"codetiming==1.4.*",
"munch==4.0.*",
"adbc-driver-flightsql==1.8.*",
"pyarrow==21.0.*",
"python-dateutil==2.9.*",
"pytz==2025.*",
"websockets==15.0.*",
"python-dotenv==1.1.*",
"cryptography==45.0.*",
"requests==2.32.*",
"clerk-backend-api==3.3.*",
"psutil==7.1.*"
]
requires-python = ">=3.12"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "pytest"]
client = [
"pandas==2.3.*"
]
[project.urls]
Homepage = "https://github.com/gizmodata/flight-sql-websocket-proxy"
[project.scripts]
flight-sql-websocket-proxy-server = "flight_sql_websocket_proxy.server:click_run_server"
flight-sql-websocket-proxy-client = "flight_sql_websocket_proxy.client:click_run_client"
[tool.bumpver]
current_version = "0.0.13"
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_sql_websocket_proxy/__init__.py" = [
'^__version__ = "{version}"$',
]