-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.23 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
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-dbt"
version = "1.53.0"
description = "dbt plugin for GoodData"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "GoodData", email = "support@gooddata.com"}
]
requires-python = ">=3.10"
dependencies = [
"gooddata-sdk~=1.53.0",
"pyyaml>=6.0",
"attrs>=21.4.0,<=24.2.0",
"cattrs>=22.1.0,<=24.1.1",
"requests~=2.32.0",
"tabulate~=0.8.10",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"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.scripts]
gooddata-dbt = "gooddata_dbt.main: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_dbt"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"