Metadata-Version: 2.4
Name: hi-grpc-client
Version: 1.0.3
Summary: hi-proto项目客户端代码(Python版)
Author: hi
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: protobuf>=6.33.5
Requires-Dist: grpcio>=1.71.0
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"

本项目是hi-proto项目生成的python客户端代码。

# 1 使用说明
将本项目的代码和hi-proto项目的代码放到同级目录，在hi-proto项目中执行make python生成python代码，再在本项目中执行构建生成python包并上传到PyPI仓库。

用户通过pip安装即可本包，安装命令如下：
```shell
# 版本号根据实际情况设置
pip install hi-grpc-client==1.0.2
```

# 2 构建
```shell
# 复制代码
make copy

# 构建wheel包和源码包
make build

# 上传wheel包和源码包到PyPI仓库
make twine

# 清理
make clean
```
