-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
76 lines (71 loc) · 1.75 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
73
74
75
76
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-flight-server"
version = "1.54.0"
description = "Flight RPC server to host custom functions"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "GoodData", email = "support@gooddata.com"}
]
keywords = [
"gooddata",
"flight",
"rpc",
"flight rpc",
"custom functions",
"analytics",
"headless",
"business",
"intelligence",
"headless-bi",
"cloud",
"native",
"semantic",
"layer",
"sql",
"metrics",
]
requires-python = ">=3.10"
dependencies = [
"dynaconf>=3.1.11,<4.0.0",
"opentelemetry-api>=1.24.0,<=2.0.0",
"opentelemetry-sdk>=1.24.0,<=2.0.0",
"orjson>=3.8.5,<4.0.0",
"prometheus-client~=0.20.0",
"pyarrow>=16.1.0",
"readerwriterlock~=1.0.9",
"structlog>=24.0.0,<25.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://gooddata-flight-server.readthedocs.io/en/v1.54.0"
Source = "https://github.com/gooddata/gooddata-python-sdk"
[project.scripts]
gooddata-flight-server = "gooddata_flight_server.cli:main"
[dependency-groups]
test = [
"pytest~=8.3.4",
"pytest-cov~=6.0.0",
]
type = [
"mypy~=1.11.2",
"pydantic~=2.9.2"
]
[tool.hatch.build.targets.wheel]
packages = ["src/gooddata_flight_server"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"