Metadata-Version: 2.4
Name: xy_health_measurement_sdk
Version: 2.1.0rc1
Summary: 小阳心健康测量SDK
Author-email: Colin Chang <zhangcheng@xymind.cn>
Keywords: 健康测量,生理测量,情绪测量,健康风险,小阳科技
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <=3.11,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.26.4
Requires-Dist: blinker==1.7.0
Requires-Dist: xy-signalrcore==1.0.1
Requires-Dist: opencv-python==4.9.0.80
Requires-Dist: mediapipe==0.10.11
Requires-Dist: protobuf==3.19.6
Dynamic: license-file

# 小阳心健康测量SDK

[使用手册](https://measurement.xymind.cn/docs/sdk/python.html)

## Conda
```bash
conda create --name measurement_client_sdk -y python=3.10 && conda activate measurement_client_sdk
pip install build toml twine
pip install -r <(python -c "import toml; print('\n'.join(toml.load('pyproject.toml')['project']['dependencies']))")
```

## publish
```bash
# clear
sudo rm -rf dist *.egg-info
# build
python -m build
# publish
python -m twine upload dist/*

# build docker image
docker build --build-arg ACCELERATE_CONFIG='--trusted-host packages.aliyun.com -i https://62629dda4e333f02816fb492:%284dbBWuBUHY8@packages.aliyun.com/62629ddec2b7347ce520e075/pypi/xy' -t xiaoyangtech/measurement-python-client-sdk:2.0.0rc15 .
docker build --build-arg ACCELERATE_CONFIG='--trusted-host packages.aliyun.com -i https://62629dda4e333f02816fb492:%284dbBWuBUHY8@packages.aliyun.com/62629ddec2b7347ce520e075/pypi/xy' -t registry.cn-shanghai.aliyuncs.com/measurement/python-client-sdk:2.0.0rc15 .
```
