-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
105 lines (94 loc) · 2.11 KB
/
pyproject.toml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "gcp-pilot"
version = "1.31.0"
description = "Google Cloud Platform Friendly Pilot"
authors = [
{name = "Joao Daher", email = "[email protected]"},
]
maintainers = [
{name = "Rodolfo Stangherlin"},
{name = "Diego Freire"},
{name = "Guilherme Araujo"},
{name = "Lucas Gomide"},
]
readme = "README.md"
keywords = ["gcp", "google cloud python", "datastore orm"]
requires-python = ">=3.11"
dependencies = [
"factory-boy>=3.3.1",
"google-api-python-client>=2.154.0",
"pytz>=2024.2",
"tenacity>=9.0.0",
]
[project.optional-dependencies]
tasks = [
"google-cloud-scheduler>=2.14.1",
"google-cloud-tasks>=2.17.1",
]
build = [
"google-cloud-build>=3.27.1",
]
storage = [
"google-cloud-storage>=2.19.0",
]
bigquery = [
"google-cloud-bigquery>=3.27.0",
"google-cloud-storage>=2.19.0",
]
speech = [
"google-cloud-speech>=2.28.1",
]
sheets = [
"gspread>=6.1.4",
]
pubsub = [
"google-cloud-pubsub>=2.27.1",
]
datastore = [
"google-cloud-datastore>=2.20.1",
"pydantic>=2.10.3",
]
dns = [
"google-cloud-dns>=0.35.0",
]
secret = [
"google-cloud-secret-manager>=2.21.1",
]
monitoring = [
"google-cloud-error-reporting>=1.11.1",
"google-cloud-logging>=3.11.3",
]
healthcare = [
"fhir-resources>=7.1.0",
]
iam = [
"google-cloud-iam>=2.16.1",
]
[dependency-groups]
dev = [
"pyjwt>=2.10.1",
"pytest-cov>=6.0.0",
"pytest-random-order>=1.1.1",
"pytest-rerunfailures>=15.0",
"pytest-sugar>=1.0.0",
"pytest-timeout>=2.3.1",
"pytest-xdist>=3.6.1",
"ruff>=0.8.2",
]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["RUF", "I", "PL", "F", "COM", "UP", "T10", "T20", "DTZ", "SIM", "TID", "PTH", "ERA", "TRY"]
ignore = ["COM812","COM819", "PLR2004", "PLR0911", "PLR0912", "PLR0913", "PLR0915", "TRY003", "RUF012"]
[tool.pytest.ini_options]
addopts = "-n auto --reruns 2 --random-order --timeout 100 --cov"
python_files = ["*_test.py"]
[tool.coverage.run]
branch = true
source = ["gcp_pilot"]
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = false