-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.42 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
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cloudquery-plugin-sdk"
version = "0.1.54"
description = "CloudQuery Plugin SDK for Python"
readme = "README.md"
license = "MPL-2.0"
requires-python = ">=3.11"
authors = [
{ name = "CloudQuery LTD", email = "pypi-packages@cloudquery.io" },
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Internet",
]
dependencies = [
"cloudquery-plugin-pb>=0.0.54",
"grpcio>=1.78.0",
"grpcio-tools>=1.78.0",
"Jinja2>=3.1.6",
"MarkupSafe>=3.0.3",
"numpy>=2.4.2",
"packaging>=26.0",
"pandas>=3.0.0",
"protobuf>=6.31.1",
"pyarrow>=23.0.0",
"python-dateutil>=2.8.1",
"pytz>=2025.2",
"six>=1.17.0",
"structlog>=25.5.0",
"tomli>=2.4.0",
"tzdata>=2025.3",
]
[project.urls]
Homepage = "https://github.com/cloudquery/plugin-sdk-python"
[dependency-groups]
dev = [
"black>=26.3.1",
"pytest>=9.0.2",
]
[tool.setuptools.packages.find]
include = ["cloudquery*"]
[tool.setuptools.package-data]
cloudquery = ["sdk/py.typed"]
[tool.pytest.ini_options]
python_files = "tests/*.py"
[tool.uv]
exclude-newer = "1 week"