-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.02 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
[project]
name = "google-ads-stubs"
version = "25.1.0"
license = "Apache-2.0"
license-files = ["LICENSE"]
description = "Type stubs for google-ads"
authors = [
{ name = "Henrik Bruåsdal", email = "henrik.bruasdal@gmail.com" },
]
readme = "README.md"
repository = "https://github.com/henribru/google-ads-stubs"
classifiers = [
"Typing :: Stubs Only",
]
dependencies = [
"google-ads>=29.1.0",
"google-auth-stubs>=0.1.0",
"googleapis-common-protos-stubs>=2.0.0",
"grpc-stubs>=1.24.7",
"proto-plus-stubs>=0.5.0",
"types-protobuf>=3.18.0",
"typing-extensions>=3.10.0",
]
requires-python = ">=3.9"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"ruff>=0.14.14",
"stubdefaulter>=0.1.0",
]
[tool.ruff.lint]
select = ["UP", "I"]
ignore = ["UP035"]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["google.ads.googleads"]
[tool.uv.build-backend]
module-name = "google-stubs.ads.googleads"
module-root = ""
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0"]
build-backend = "uv_build"