-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
70 lines (66 loc) · 1.62 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
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-fdw"
version = "1.54.0"
description = "GoodData Cloud Foreign Data Wrapper For PostgreSQL"
readme = "README.md"
license = "MIT"
authors = [
{name = "GoodData", email = "support@gooddata.com"}
]
keywords = [
"gooddata",
"fdw",
"postgresql",
"analytics",
"headless",
"business",
"intelligence",
"headless-bi",
"cloud",
"native",
"semantic",
"layer",
"sql",
"metrics",
]
requires-python = ">=3.10"
dependencies = [
"gooddata-sdk~=1.54.0",
# "multicorn>=1.4.0", # Uncommented as it was in original setup.py
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://gooddata-fdw.readthedocs.io/en/v1.54.0"
Source = "https://github.com/gooddata/gooddata-python-sdk"
[dependency-groups]
test = [
"pytest~=8.3.4",
"pytest-cov~=6.0.0",
"vcrpy~=7.0.0",
# TODO - Bump the version together with bumping the version of openapi generator
"urllib3==1.26.9",
"pyyaml",
"tests_support",
]
type = [
"mypy~=1.11.2",
"pydantic~=2.12.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/gooddata_fdw"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"