-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 973 Bytes
/
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
[project]
name = "google-ads-stubs"
version = "19.0.0"
license = "Apache-2.0"
description = "Type stubs for google-ads"
authors = [
{ name = "Henrik Bruåsdal", email = "[email protected]" },
]
readme = "README.md"
repository = "https://github.com/henribru/google-ads-stubs"
classifiers = [
"Typing :: Stubs Only",
]
dependencies = [
"google-ads>=25.0.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.8"
[tool.uv]
dev-dependencies = [
"mypy>=1.9.0",
"ruff>=0.3.3",
"stubdefaulter>=0.1.0",
]
[tool.ruff.lint]
select = ["UP", "I"]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["google.ads.googleads"]
[tool.hatch.build.targets.wheel]
packages = ["google-stubs"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"