[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "udb-client"
version = "0.2.0"
description = "Python SDK for the UDB DataBroker gRPC API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "fahara02" },
]
keywords = ["udb", "grpc", "database", "sdk", "databroker"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = [
"grpcio>=1.80",
"protobuf>=6.31.1,<7",
]
[project.optional-dependencies]
pydantic = [
"pydantic>=2.7,<3",
]
dev = [
"build>=1.5",
"grpcio-tools>=1.80",
"pydantic>=2.7,<3",
"pyrefly>=1",
"pytest>=9",
"twine>=6.2",
]
[project.urls]
Homepage = "https://github.com/fahara02/udb"
Repository = "https://github.com/fahara02/udb"
Issues = "https://github.com/fahara02/udb/issues"
[tool.setuptools.packages.find]
where = ["gen", "."]
include = ["udb*", "google*", "udb_client*"]
namespaces = true
[tool.setuptools.package-data]
udb_client = ["py.typed"]
"*" = ["*.pyi"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
pythonpath = [".", "gen"]
[tool.pyrefly]
project-includes = ["udb_client", "tests"]
python-version = "3.12"
search-path = [".", "gen"]