-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 970 Bytes
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
# (C) 2025 GoodData Corporation
[project]
name = "gooddata-pipelines"
version = "1.50.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.11.3,<3.0.0)",
"requests (>=2.32.3,<3.0.0)",
"types-requests (>=2.32.0,<3.0.0)",
"gooddata-sdk~=1.50.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
[tool.poetry.group.dev.dependencies]
mypy = "^1.17.1"
moto = ">=5.1.6,<6.0.0"
pytest = ">=8.3.5,<9.0.0"
pytest-mock = ">=3.14.0,<4.0.0"
ruff = ">=0.11.2,<0.12.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"