20 lines
421 B
TOML
20 lines
421 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "configcenter-client"
|
|
version = "0.1.0"
|
|
description = "Config Center Python client with SSE watch and local cache fallback"
|
|
requires-python = ">=3.10"
|
|
|
|
[project.optional-dependencies]
|
|
grpc = [
|
|
"grpcio>=1.71,<2",
|
|
"protobuf>=5.29,<7",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["configcenter*"]
|