|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=75.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "cloudquery-plugin-pb" |
| 7 | +version = "0.0.54" |
| 8 | +description = "CloudQuery Plugin client and server library" |
| 9 | +readme = "README.md" |
| 10 | +license = "MPL-2.0" |
| 11 | +requires-python = ">=3.9" |
| 12 | +authors = [ |
| 13 | + { name = "CloudQuery LTD", email = "[email protected]" }, |
| 14 | +] |
| 15 | +classifiers = [ |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Programming Language :: Python", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Topic :: Internet", |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "grpcio>=1.56.0", |
| 29 | + "grpcio-tools>=1.56.0", |
| 30 | + "protobuf>=6.30.0", |
| 31 | + "pyarrow>=13.0.0", |
| 32 | +] |
| 33 | + |
| 34 | +[project.urls] |
| 35 | +Homepage = "https://github.com/cloudquery/plugin-pb-python" |
| 36 | + |
| 37 | +[dependency-groups] |
| 38 | +dev = [ |
| 39 | + "black>=26.3.1; python_version >= '3.10'", |
| 40 | + "pytest>=9.0.2; python_version >= '3.10'", |
| 41 | +] |
| 42 | + |
| 43 | +[tool.setuptools.packages.find] |
| 44 | +include = ["cloudquery*"] |
| 45 | + |
| 46 | +[tool.setuptools.package-data] |
| 47 | +cloudquery = [ |
| 48 | + "plugin_v3/py.typed", |
| 49 | + "plugin_v3/*.pyi", |
| 50 | + "discovery_v1/py.typed", |
| 51 | + "discovery_v1/*.pyi", |
| 52 | +] |
| 53 | + |
| 54 | +[tool.uv] |
| 55 | +exclude-newer = "1 week" |
0 commit comments