-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.03 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
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-pipelines"
version = "1.54.0"
description = "GoodData Cloud lifecycle automation pipelines"
authors = [{ name = "GoodData", email = "support@gooddata.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic (>=2.9.2,<3.0.0)",
"requests (>=2.32.3,<3.0.0)",
"types-requests (>1.0.0,<3.0.0)",
"gooddata-sdk~=1.54.0",
"boto3 (>=1.39.3,<2.0.0)",
"boto3-stubs (>=1.39.3,<2.0.0)",
"types-pyyaml (>=6.0.12.20250326,<7.0.0)",
]
[tool.mypy]
disallow_untyped_defs = true
warn_redundant_casts = true
strict_equality = true
no_implicit_optional = true
[tool.ruff]
exclude = [".venv"]
line-length = 80
[dependency-groups]
test = [
"pytest (>=8.3.5,<9.0.0)",
"pytest-cov~=6.0.0",
"pytest-mock (>=3.14.0,<4.0.0)",
"moto (>=5.1.6,<6.0.0)",
"orjson (>=3.11.3,<4.0.0)",
]
type = [
"mypy (>=1.11.2,<2.0.0)",
"pydantic~=2.9.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"