-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.33 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
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cloudquery-plugin-pb"
version = "0.0.54"
description = "CloudQuery Plugin client and server library"
readme = "README.md"
license = "MPL-2.0"
requires-python = ">=3.9"
authors = [
{ name = "CloudQuery LTD", email = "pypi-packages@cloudquery.io" },
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Internet",
]
dependencies = [
"grpcio>=1.56.0",
"grpcio-tools>=1.56.0",
"protobuf>=6.30.0",
"pyarrow>=13.0.0",
]
[project.urls]
Homepage = "https://github.com/cloudquery/plugin-pb-python"
[dependency-groups]
dev = [
"black>=26.3.1; python_version >= '3.10'",
"pytest>=9.0.2; python_version >= '3.10'",
]
[tool.setuptools.packages.find]
include = ["cloudquery*"]
[tool.setuptools.package-data]
cloudquery = [
"plugin_v3/py.typed",
"plugin_v3/*.pyi",
"discovery_v1/py.typed",
"discovery_v1/*.pyi",
]
[tool.uv]
exclude-newer = "1 week"